Very small library to create files. It's an alternative to macOS's mkfile(8) that works on everything that has rust's std. I have no idea how fast or perfomant this is, so good luck.

Arguments

Example

rust use cavity::{fill, Bytes, WriteMode}; use std::fs::File; let mut f = File::create("wat.test").unwrap(); fill(Bytes::MegaBytes(5), None, WriteMode::FlushEvery, &mut f).unwrap();