Try to remove default features from "url" to compile on older Rusts

This commit is contained in:
Igor Katson 2024-12-03 20:58:21 +00:00
parent 1998f7d859
commit 44c54ed3ce
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
5 changed files with 5 additions and 5 deletions

View file

@ -92,7 +92,7 @@ tracing-subscriber = { version = "0.3", default-features = false, features = [
], optional = true }
uuid = { version = "1.2", features = ["v4"] }
futures = "0.3"
url = "2"
url = { version = "2", default-features = false }
hex = "0.4"
backoff = "0.4.0"
dashmap = "6"

View file

@ -19,7 +19,7 @@ tracing = "0.1.40"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
hex = "0.4"
anyhow = "1"
url = "2"
url = { version = "2", default-features = false }
uuid = { version = "1", features = ["v4"] }
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }

View file

@ -24,4 +24,4 @@ rand = "0.8"
tracing = "0.1.40"
reqwest = { version = "0.12", default-features = false, features = ["json"] }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" }
url = "2"
url = { version = "2", default-features = false }

View file

@ -31,7 +31,7 @@ gethostname = "0.5.0"
librqbit-sha1-wrapper = { path = "../sha1w", version = "4", default-features = false }
librqbit-core = { version = "4", path = "../librqbit_core", default-features = false }
mime_guess = "2.0.5"
url = "2.5.2"
url = { version = "2", default-features = false }
parking_lot = "0.12.3"
tokio-util = "0.7.11"
reqwest = { version = "0.12.7", default-features = false }

View file

@ -18,7 +18,7 @@ reqwest = { version = "0.12", default-features = false }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros"] }
futures = "0.3"
url = "2"
url = { version = "2", default-features = false }
network-interface = { version = "2" }
httparse = "1.9.4"
bstr = "1.10.0"