From 411eb7357748388e8c8a866e6a803a1660749876 Mon Sep 17 00:00:00 2001 From: Sulaiman Khan Ghori Date: Sat, 12 Apr 2025 12:06:56 -0700 Subject: [PATCH] :arrow_up: (librqbit) Update dep requirement for url to compatible w/ current version Less strict than =, can use as dep in other projects :) --- crates/librqbit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/librqbit/Cargo.toml b/crates/librqbit/Cargo.toml index 1f8c4ee..5832d90 100644 --- a/crates/librqbit/Cargo.toml +++ b/crates/librqbit/Cargo.toml @@ -98,7 +98,7 @@ tracing-subscriber = { version = "0.3", default-features = false, features = [ ], optional = true } uuid = { version = "1.2", features = ["v4"] } futures = "0.3" -url = { version = "=2.5.2", default-features = false, features = [ +url = { version = "^2.5.2", default-features = false, features = [ "serde", ] } # can't upgrade yet until min version is Rust 1.81, see https://github.com/servo/rust-url/issues/992