nzr-api: always depend on futures

This commit is contained in:
snow flurry 2024-08-18 19:44:54 -07:00
parent d6eca32bc0
commit f63626489d

View file

@ -17,7 +17,7 @@ uuid = { version = "1.2.2", features = ["serde"] }
hickory-proto = { version = "0.24", features = ["serde-config"] } hickory-proto = { version = "0.24", features = ["serde-config"] }
log = "0.4.17" log = "0.4.17"
diesel = { version = "2.2", optional = true } diesel = { version = "2.2", optional = true }
futures = { version = "0.3", optional = true } futures = "0.3"
thiserror = "1" thiserror = "1"
regex = "1" regex = "1"
lazy_static = "1" lazy_static = "1"
@ -30,4 +30,4 @@ uuid = { version = "1.2.2", features = ["serde", "v4"] }
[features] [features]
diesel = ["dep:diesel"] diesel = ["dep:diesel"]
mock = ["dep:futures"] mock = []