Skip to content

Commit

Permalink
Lock down url dep to 2.3.1
Browse files Browse the repository at this point in the history
url 2.4.x brings in idna 0.4.0 and cookie_store dep on idna 0.3.0.
To avoid douple deps, we hold back url to 2.3.x
  • Loading branch information
algesten committed Sep 30, 2023
1 parent 27be74c commit a2bb843
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
18 changes: 4 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ http-interop = ["dep:http"]
base64 = "0.21"
cookie = { version = "0.17", default-features = false, optional = true}
once_cell = "1"
url = "2"
# url 2.4.x brings in idna 0.4.0 and cookie_store dep on idna 0.3.0
# check if we can remove this next time we upgrade cookie_store.
url = "=2.3.1"
socks = { version = "0.3", optional = true }
serde = { version = "1", optional = true }
serde_json = { version = ">=1.0.97", optional = true }
Expand Down

0 comments on commit a2bb843

Please sign in to comment.