diff options
Diffstat (limited to 'cache/tools/Cargo.toml')
| -rw-r--r-- | cache/tools/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cache/tools/Cargo.toml b/cache/tools/Cargo.toml new file mode 100644 index 0000000..8f249b5 --- /dev/null +++ b/cache/tools/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "tools" +version = "0.1.0" +edition = "2024" + +[dependencies] +rocksdb = { version = "0.24.0", features = ["multi-threaded-cf"] } +anyhow = "1.0.100" + +[[bin]] +name = "cache_fs_to_rocksdb" +path = "cache_fs_to_rocksdb.rs" + +[[bin]] +name = "cache_rocksdb_delete_prefix" +path = "cache_rocksdb_delete_prefix.rs" |