Skip to content

Commit

Permalink
Explicitly set tokio flags
Browse files Browse the repository at this point in the history
`rt-multi-thread` is required for Windows, and we rely on inheriting it
from `reqwest`. This sets it explicitly.
  • Loading branch information
jonathanrainer committed Jul 12, 2024
1 parent c88d049 commit ff2a0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json_traversal = { workspace = true }
shell-candy = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["rt"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
tokio-stream = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
which = { workspace = true }
Expand Down

0 comments on commit ff2a0c8

Please sign in to comment.