Skip to content

Commit

Permalink
Do not use multiple version deps
Browse files Browse the repository at this point in the history
  • Loading branch information
algesten committed Dec 4, 2024
1 parent 8db7f59 commit 25d4420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cookie = { version = "0.18", default-features = false, optional = true }
once_cell = "1"
socks = { version = "0.3", optional = true }
serde = { version = "1", optional = true }
serde_json = { version = ">=1.0.97", optional = true }
serde_json = { version = "1.0.97", optional = true }
encoding_rs = { version = "0.8", optional = true }
cookie_store = { version = "0.21.1", optional = true, default-features = false, features = ["preserve_order", "serde_json"] }
log = "0.4"
Expand All @@ -58,7 +58,7 @@ brotli-decompressor = { version = "4.0.0", optional = true }
http-02 = { package = "http", version = "0.2", optional = true }
http = { version = "1.1", optional = true }
url = "2.5.0"
rustls = { version = ">=0.23.19", optional = true, default-features = false, features = ["ring", "logging", "std", "tls12"] }
rustls = { version = "0.23.19", optional = true, default-features = false, features = ["ring", "logging", "std", "tls12"] }

# This can't be in dev-dependencies due to doc tests.
hootbin = { version = "0.1.5", optional = true }
Expand Down

0 comments on commit 25d4420

Please sign in to comment.