extern crate cshannon;
use std::path::Path;
fn main() {
cshannon::run(cshannon::Args {
command: cshannon::Command::Compress(cshannon::CompressArgs {
encoding_scheme: cshannon::EncodingScheme::BalancedTree,
tokenization_scheme: cshannon::TokenizationScheme::Grapheme,
}),
input_file: &Path::new("/tmp/non-existent-input-file"),
output_file: &Path::new("/tmp/non-existent-output-file"),
})
.unwrap();
cshannon::run(cshannon::Args {
command: cshannon::Command::Decompress(cshannon::DecompressArgs {}),
input_file: &Path::new("/tmp/non-existent-input-file"),
output_file: &Path::new("/tmp/non-existent-output-file"),
})
.unwrap();
}