Skip to content

Commit

Permalink
Fix tokio dependency
Browse files Browse the repository at this point in the history
tokio `rt-multi-thread` feature is required to be able to use `Runtime::new()`
  • Loading branch information
imikushin committed Jun 17, 2024
1 parent fa9d670 commit 9588dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jolt-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dirs = "5.0.1"
eyre = "0.6.12"
indicatif = "0.17.8"
memory-stats = "1.0.0"
tokio = { version = "1.37.0", optional = true }
tokio = { version = "1.38.0", optional = true, features = ["rt-multi-thread"] }

common = { path = "../common" }
tracer = { path = "../tracer" }
Expand Down

0 comments on commit 9588dc0

Please sign in to comment.