This commit is contained in:
Mauro D
2023-04-04 12:28:43 +00:00
parent 4d192de2fe
commit cfb2637b55
21 changed files with 901 additions and 123 deletions

View File

@@ -27,13 +27,16 @@ xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
farmhash = "1.1.5"
siphasher = "0.3"
maybe-async = "0.2"
parking_lot = { version = "0.12.1", optional = true }
lru-cache = { version = "0.1.2", optional = true }
blake3 = "1.3.3"
[features]
default = ["foundation"]
default = ["sqlite"]
rocks = ["rocksdb", "rayon", "is_sync"]
sqlite = ["rusqlite", "rayon", "r2d2", "tokio", "is_sync"]
foundation = ["foundationdb", "futures", "is_async"]
is_sync = ["maybe-async/is_sync"]
is_sync = ["maybe-async/is_sync", "parking_lot", "lru-cache"]
is_async = []
[dev-dependencies]