From a77efa2adc785a9db8d888e87909602f261d40df Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Mon, 20 Nov 2023 21:48:43 -0300 Subject: [PATCH] fix(network): add missing rt feature for tokio --- .github/workflows/release.yml | 1 + pallas-network/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0b6909..b723f4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,7 @@ jobs: github_release: name: Create GitHub Release runs-on: ubuntu-latest + needs: ["cargo_publish"] steps: - name: Checkout uses: actions/checkout@v2.4.0 diff --git a/pallas-network/Cargo.toml b/pallas-network/Cargo.toml index 0426627..f3f739d 100644 --- a/pallas-network/Cargo.toml +++ b/pallas-network/Cargo.toml @@ -17,7 +17,7 @@ itertools = "0.10.5" pallas-codec = { version = "=0.20.0", path = "../pallas-codec" } pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" } thiserror = "1.0.31" -tokio = { version = "1", features = ["net", "io-util", "time", "sync", "macros"] } +tokio = { version = "1", features = ["rt", "net", "io-util", "time", "sync", "macros"] } tracing = "0.1.37" [dev-dependencies]