Skip to content

Commit d26a08f

Browse files
authored
fix(rpc): missing signal feature of 'tokio' (#303)
1 parent b6d89ff commit d26a08f

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ jobs:
119119
toolchain: ${{ env.RUST_STABLE }}
120120
- uses: Swatinem/rust-cache@v2
121121
- run: cargo build --workspace --all-features
122+
# Check that `wcn_operator` specifically builds outside of the cargo workspace
123+
- run: cargo build -p wcn_operator
122124

123125
cargo-test:
124126
needs: [changed-files]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
251201.0
1+
251204.0

crates/rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ futures = { workspace = true }
3737
futures-concurrency = { workspace = true }
3838
futures-util = { version = "0.3" }
3939
futures-timer = { version = "3.0" }
40-
tokio = { workspace = true, features = ["io-util"] }
40+
tokio = { workspace = true, features = ["io-util", "signal"] }
4141
tokio-util = { version = "0.7", features = ["compat", "codec"] }
4242
tokio-serde = { workspace = true, features = ["json"] }
4343

0 commit comments

Comments
 (0)