Skip to content

Commit

Permalink
fix: Require the rt feature for tokio::task::spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGunflame committed May 1, 2023
1 parent f33cb24 commit d59bdd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/MrGunflame/ts3-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.26.0", features = ["net", "time", "sync", "io-util"] }
tokio = { version = "1.26.0", features = ["net", "time", "sync", "io-util", "rt"] }
async-trait = "0.1.42"
bytes = "1.4.0"
ts3_derive = { version = "0.4.0", path = "../ts3_derive" }
Expand Down

0 comments on commit d59bdd1

Please sign in to comment.