From 6d2ff824ce5a20f81de4eb03f7f215e51fd71d8c Mon Sep 17 00:00:00 2001 From: ian Date: Tue, 3 Dec 2024 16:05:56 +0800 Subject: [PATCH] chore: add missing tokio::process for notify --- notify/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 49a3ff5d81..428c66da34 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -14,6 +14,6 @@ ckb-app-config = { path = "../util/app-config", version = "= 0.120.0-pre" } ckb-types = { path = "../util/types", version = "= 0.120.0-pre" } ckb-stop-handler = { path = "../util/stop-handler", version = "= 0.120.0-pre" } ckb-async-runtime = { path = "../util/runtime", version = "= 0.120.0-pre" } -tokio = { version = "1", features = ["sync"] } +tokio = { version = "1", features = ["sync", "process"] } [dev-dependencies]