diff --git a/Cargo.toml b/Cargo.toml index efbc7be..084cadb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,15 +74,3 @@ path = "benches/binggan_bench.rs" # harness = false # name = "bench" # path = "benches/bench.rs" - -# [[bin]] -# name = "decompress_with_stats" -# path = "src/test_bins/decompress_with_stats.rs" - -# [[bin]] -# name = "profile_decomp" -# path = "src/test_bins/profile_decomp.rs" - -# [[bin]] -# name = "profile_comp" -# path = "src/test_bins/profile_comp.rs" diff --git a/src/test_bins/compress_block.rs b/src/test_bins/compress_block.rs deleted file mode 100644 index 74af2b8..0000000 --- a/src/test_bins/compress_block.rs +++ /dev/null @@ -1,5 +0,0 @@ -fn main() { - use lz4_flex::compress_prepend_size; - let input = "Hello people, what's up?".to_string(); - let _compressed = compress_prepend_size(input.as_bytes()); -}