Skip to content

Commit

Permalink
fix: tokio feature flag name updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
fourbytes committed Nov 22, 2024
1 parent bc99625 commit af570d0
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
oauth2 = { version = "4", default-features = false, features = ["reqwest", "rustls-tls"] }
reqwest = { version = "0.11", default-features = false, features = ["tokio-native-tls", "json"] }
oauth2 = { version = "4", default-features = false, features = [
"reqwest",
"rustls-tls",
] }
reqwest = { version = "0.11", default-features = false, features = [
"tokio-native-tls",
"json",
] }

url = "2"

Expand All @@ -34,6 +40,11 @@ thiserror = "1"
rust_decimal_macros = "1.15"
lazy_static = "1"
warp = "0.3"
tokio = { version = "1", default-features = false, features = ["time", "rt", "macros"] }
tokio = { version = "1", default-features = false, features = [
"time",
"rt",
"macros",
"rt-multi-thread",
] }
anyhow = "1"
tracing-subscriber = "0.2"

0 comments on commit af570d0

Please sign in to comment.