Skip to content

Commit

Permalink
fix(network): add missing rt feature for tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Nov 21, 2023
1 parent 107738a commit a77efa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
github_release:
name: Create GitHub Release
runs-on: ubuntu-latest
needs: ["cargo_publish"]
steps:
- name: Checkout
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion pallas-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit a77efa2

Please sign in to comment.