remove backend_* features that do nothing

This commit is contained in:
Charles Hall 2024-04-27 21:37:57 -07:00
parent c0972c2b57
commit d21221d54e
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF

View file

@ -72,11 +72,10 @@ trust-dns-resolver = "0.22.0"
nix = { version = "0.28", features = ["resource"] }
[features]
default = ["backend_rocksdb", "backend_sqlite", "systemd"]
default = ["rocksdb", "sqlite", "systemd"]
# Keep sorted
backend_rocksdb = ["dep:rocksdb"]
backend_sqlite = ["sqlite"]
jemalloc = ["dep:tikv-jemallocator"]
rocksdb = ["dep:rocksdb"]
sqlite = ["dep:rusqlite", "dep:parking_lot", "tokio/signal"]
systemd = ["dep:sd-notify"]