Skip to content

Commit

Permalink
chore: add missing tokio::process for notify
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Dec 4, 2024
1 parent 3a99b50 commit 40b3840
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ repository = "https://github.com/nervosnetwork/ckb"

[dependencies]
ckb-logger = { path = "../util/logger", version = "= 0.120.0-pre" }
ckb-app-config = { path = "../util/app-config", version = "= 0.120.0-pre" }
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" }

[target.'cfg(target_family = "wasm")'.dependencies]
tokio = { version = "1", features = ["sync"] }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
tokio = { version = "1", features = ["sync", "process"] }

[dev-dependencies]

0 comments on commit 40b3840

Please sign in to comment.