build(deltachat-rpc-server): enable tokio/signal feature

It is required for tokio::signal::ctrl_c
This commit is contained in:
link2xt
2026-04-27 22:37:14 +02:00
parent 563bd9f24e
commit 459aa66ed0

View File

@@ -18,7 +18,7 @@ futures-lite = { workspace = true }
log = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["io-std"] }
tokio = { workspace = true, features = ["io-std", "signal"] }
tokio-util = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
yerpc = { workspace = true, features = ["anyhow_expose", "openrpc"] }