From 459aa66ed0155d52db48bb1e6705b4ca080b5586 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 27 Apr 2026 22:37:14 +0200 Subject: [PATCH] build(deltachat-rpc-server): enable tokio/signal feature It is required for tokio::signal::ctrl_c --- deltachat-rpc-server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 42c691b76..16c142126 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -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"] }