mail-server/crates/store/Cargo.toml

65 lines
2.6 KiB
TOML
Raw Normal View History

2023-04-04 13:12:46 +00:00
[package]
name = "store"
version = "0.1.0"
edition = "2021"
2023-04-19 16:55:37 +00:00
resolver = "2"
2023-04-04 13:12:46 +00:00
[dependencies]
2023-04-14 07:04:36 +00:00
utils = { path = "../utils" }
nlp = { path = "../nlp" }
2023-12-02 14:52:05 +00:00
rocksdb = { version = "0.21", optional = true, features = ["multi-threaded-cf"] }
2023-07-07 07:27:22 +00:00
foundationdb = { version = "0.8.0", features = ["embedded-fdb-include"], optional = true }
rusqlite = { version = "0.30.0", features = ["bundled"], optional = true }
2023-12-03 18:40:16 +00:00
rust-s3 = { version = "0.33.0", default-features = false, features = ["tokio-rustls-tls"], optional = true }
2023-04-19 16:55:37 +00:00
tokio = { version = "1.23", features = ["sync", "fs", "io-util"] }
2023-04-04 13:12:46 +00:00
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"] }
lazy_static = "1.4"
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
farmhash = "1.1.5"
2023-05-26 14:57:04 +00:00
parking_lot = "0.12.1"
2023-04-04 13:12:46 +00:00
lru-cache = { version = "0.1.2", optional = true }
num_cpus = { version = "1.15.0", optional = true }
2023-04-04 13:12:46 +00:00
blake3 = "1.3.3"
2023-05-02 15:51:26 +00:00
tracing = "0.1"
lz4_flex = { version = "0.11" }
2023-12-02 14:52:05 +00:00
deadpool-postgres = { version = "0.11.0", optional = true }
tokio-postgres = { version = "0.7.10", optional = true }
2023-12-08 09:46:20 +00:00
tokio-rustls = { version = "0.25.0", optional = true }
rustls = { version = "0.22.0", optional = true }
rustls-pki-types = { version = "1", optional = true }
2023-12-02 14:52:05 +00:00
ring = { version = "0.17", optional = true }
bytes = { version = "1.0", optional = true }
2023-12-02 14:52:05 +00:00
mysql_async = { version = "0.33", default-features = false, features = ["default-rustls"], optional = true }
2023-12-03 18:40:16 +00:00
elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true }
serde_json = {version = "1.0.64", optional = true }
regex = "1.7.0"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots", "blocking"] }
flate2 = "1.0"
async-trait = "0.1.68"
2023-12-12 17:45:52 +00:00
redis = { version = "0.24.0", features = [ "tokio-comp", "tokio-rustls-comp", "tls-rustls-insecure", "tls-rustls-webpki-roots", "cluster-async"], optional = true }
deadpool = { version = "0.10.0", features = ["managed"], optional = true }
2023-04-04 13:12:46 +00:00
2023-07-11 15:16:08 +00:00
[dev-dependencies]
tokio = { version = "1.23", features = ["full"] }
2023-04-04 13:12:46 +00:00
[features]
2023-12-02 14:52:05 +00:00
rocks = ["rocksdb", "rayon", "num_cpus"]
sqlite = ["rusqlite", "rayon", "r2d2", "num_cpus", "lru-cache"]
2023-12-08 09:46:20 +00:00
postgres = ["tokio-postgres", "deadpool-postgres", "tokio-rustls", "rustls", "ring", "rustls-pki-types", "futures", "bytes"]
2023-12-03 18:40:16 +00:00
elastic = ["elasticsearch", "serde_json"]
2023-12-02 14:52:05 +00:00
mysql = ["mysql_async"]
2023-12-03 18:40:16 +00:00
s3 = ["rust-s3"]
foundation = ["foundationdb", "futures"]
2023-12-08 18:49:44 +00:00
fdb-chunked-bm = []
2023-12-12 17:45:52 +00:00
redis = ["dep:redis", "deadpool"]
2023-12-02 14:52:05 +00:00
2023-04-05 16:05:21 +00:00
test_mode = []