mirror of
https://github.com/ShadowJonathan/conduit_toolbox.git
synced 2025-07-27 13:40:52 +03:00
add persy backend and make building optional
This commit is contained in:
parent
0e0a025c37
commit
805baa0705
6 changed files with 276 additions and 19 deletions
|
@ -7,9 +7,16 @@ edition = "2018"
|
|||
|
||||
[dependencies]
|
||||
itertools = "0.10.1"
|
||||
sled = { version = "0.34.6", features = ["compression", "no_metrics"] }
|
||||
rusqlite = { version = "0.25.3", features = ["bundled"] }
|
||||
anyhow = "1.0.42"
|
||||
heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d" }
|
||||
thiserror = "1.0.26"
|
||||
rocksdb = { version = "0.17.0", features = ["multi-threaded-cf", "zstd"] }
|
||||
anyhow = "1.0.42"
|
||||
|
||||
sled = { version = "0.34.6", features = ["compression", "no_metrics"], optional = true }
|
||||
rusqlite = { version = "0.25.3", features = ["bundled"], optional = true }
|
||||
heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true }
|
||||
rocksdb = { version = "0.17.0", features = ["multi-threaded-cf", "zstd"], optional = true }
|
||||
persy = { version = "1.2", optional = true }
|
||||
|
||||
[features]
|
||||
default = ["sled", "persy", "heed", "sqlite", "rocksdb"]
|
||||
|
||||
sqlite = ["rusqlite"]
|
Loading…
Add table
Add a link
Reference in a new issue