[package] name = "filetree-hybrid" version = "0.1.0" edition = "2021" [dependencies] rusqlite = { version = "0.32", features = ["bundled"] } sled = "1.0.0-alpha.124" serde = { version = "1", features = ["derive"] } serde_json = "1" anyhow = "1" chrono = { version = "0.4", features = ["serde"] } uuid = { version = "1", features = ["v4"] } log = "0.4" [[bin]] name = "hybrid-poc-test" path = "src/poc.rs" [[bin]] name = "hybrid-benchmark" path = "src/benchmark.rs" [[bin]] name = "multi-file-copy-test" path = "src/copy_test.rs" [[bin]] name = "large-file-copy-test" path = "src/large_file_copy_test.rs" [lib] name = "filetree_hybrid" path = "src/lib.rs"