use dep: syntax in cargo features

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

View file

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