From 3d1fe58be3aac50695cbe1fa41048848103f11a0 Mon Sep 17 00:00:00 2001 From: "Tristan F." Date: Wed, 16 Oct 2024 22:35:53 -0700 Subject: [PATCH] chore: drop unused test_bins file & refs --- Cargo.toml | 12 ------------ src/test_bins/compress_block.rs | 5 ----- 2 files changed, 17 deletions(-) delete mode 100644 src/test_bins/compress_block.rs 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()); -}