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 3, 2024
1 parent ec48190 commit 2dde57f
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions notify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,21 @@ homepage = "https://github.com/nervosnetwork/ckb"
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-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" }
# ckb-logger = { path = "../util/logger", 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" }
ckb-logger = { version = "= 0.120.0-rc3" }
ckb-app-config = { version = "= 0.120.0-rc3" }
ckb-types = { version = "= 0.120.0-rc3" }
ckb-stop-handler = { version = "= 0.120.0-rc3" }
ckb-async-runtime = { version = "= 0.120.0-rc3" }

[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 2dde57f

Please sign in to comment.