[package] name = "store" version = "0.1.0" edition = "2021" resolver = "2" [dependencies] utils = { path = "../utils" } maybe-async = { path = "../maybe-async" } rocksdb = { version = "0.20.1", optional = true } foundationdb = { version = "0.8.0", features = ["embedded-fdb-include"], optional = true } rusqlite = { version = "0.29.0", features = ["bundled"], optional = true } rust-s3 = { version = "0.33.0", default-features = false, features = ["tokio-rustls-tls"] } tokio = { version = "1.23", features = ["sync", "fs", "io-util"] } r2d2 = { version = "0.8.10", optional = true } futures = { version = "0.3", optional = true } rand = "0.8.5" roaring = "0.10.1" rayon = { version = "1.5.1", optional = true } serde = { version = "1.0", features = ["derive"]} ahash = { version = "0.8.0", features = ["serde"] } bitpacking = "0.8.4" lazy_static = "1.4" whatlang = "0.16" # Language detection rust-stemmers = "1.2" # Stemmers tinysegmenter = "0.1" # Japanese tokenizer jieba-rs = "0.6" # Chinese stemmer xxhash-rust = { version = "0.8.5", features = ["xxh3"] } farmhash = "1.1.5" siphasher = "0.3" parking_lot = "0.12.1" lru-cache = { version = "0.1.2", optional = true } num_cpus = { version = "1.15.0", optional = true } blake3 = "1.3.3" tracing = "0.1" [dev-dependencies] tokio = { version = "1.23", features = ["full"] } [features] rocks = ["rocksdb", "rayon", "is_sync", "backend"] sqlite = ["rusqlite", "rayon", "r2d2", "num_cpus", "is_sync", "backend"] foundation = ["foundationdb", "futures", "key_subspace", "backend"] is_sync = ["maybe-async/is_sync", "lru-cache"] backend = [] key_subspace = [] test_mode = []