remove unused dependencies

This commit is contained in:
Charles Hall 2024-04-27 21:48:29 -07:00
parent c097e79e52
commit c496878afa
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 1 additions and 24 deletions

View file

@ -86,7 +86,6 @@ rusqlite = { version = "0.29.0", optional = true, features = ["bundled"] }
parking_lot = { version = "0.12.1", optional = true }
# crossbeam = { version = "0.8.2", optional = true }
num_cpus = "1.15.0"
threadpool = "1.8.1"
# Used for ruma wrapper
serde_html_form = "0.2.0"
@ -100,9 +99,7 @@ futures-util = { version = "0.3.28", default-features = false }
# Used for reading the configuration from conduit.toml & environment variables
figment = { version = "0.10.8", features = ["env", "toml"] }
tikv-jemalloc-ctl = { version = "0.5.0", features = ["use_std"], optional = true }
tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
lazy_static = "1.4.0"
async-trait = "0.1.68"
sd-notify = { version = "0.4.1", optional = true }
@ -124,7 +121,7 @@ nix = { version = "0.28", features = ["resource"] }
default = ["backend_sqlite", "backend_rocksdb", "systemd"]
backend_sqlite = ["sqlite"]
backend_rocksdb = ["rocksdb"]
jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"]
jemalloc = ["tikv-jemallocator"]
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
systemd = ["sd-notify"]