From ec78e88545387e465fe1ac19440dcb9e221cf940 Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 22 Nov 2023 13:01:37 +0100 Subject: [PATCH 1/5] Update data-url to 0.3.1 --- data-url/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-url/Cargo.toml b/data-url/Cargo.toml index 0edfd281a..19a075383 100644 --- a/data-url/Cargo.toml +++ b/data-url/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "data-url" -version = "0.3.0" +version = "0.3.1" authors = ["Simon Sapin "] description = "Processing of data: URL according to WHATWG’s Fetch Standard" categories = ["no_std"] From 91bfe2712e39ebca4b4779ea09f27f0322039c1d Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 22 Nov 2023 13:09:33 +0100 Subject: [PATCH 2/5] Update percent_encoding to 2.3.1 --- percent_encoding/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/percent_encoding/Cargo.toml b/percent_encoding/Cargo.toml index 4a3c08712..5f659ad50 100644 --- a/percent_encoding/Cargo.toml +++ b/percent_encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "percent-encoding" -version = "2.3.0" +version = "2.3.1" authors = ["The rust-url developers"] description = "Percent encoding and decoding" categories = ["no_std"] From be69c94faeb3f2ae0cfb94f64321d1f013bd0b80 Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 22 Nov 2023 13:10:18 +0100 Subject: [PATCH 3/5] Update form_urlencoded to 1.2.1 --- form_urlencoded/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/form_urlencoded/Cargo.toml b/form_urlencoded/Cargo.toml index 8e385d790..cf23948da 100644 --- a/form_urlencoded/Cargo.toml +++ b/form_urlencoded/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "form_urlencoded" -version = "1.2.0" +version = "1.2.1" authors = ["The rust-url developers"] description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms." categories = ["no_std"] From 8be7eaf6a2fc36243eebcf90d2bba88bf71c4703 Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 22 Nov 2023 13:11:49 +0100 Subject: [PATCH 4/5] Update idna to 0.5.0 --- idna/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idna/Cargo.toml b/idna/Cargo.toml index e5c9886a6..9ca92d688 100644 --- a/idna/Cargo.toml +++ b/idna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "idna" -version = "0.4.0" +version = "0.5.0" authors = ["The rust-url developers"] description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." categories = ["no_std"] From 797b8cef1511830836686aa0b4f726786d78fc58 Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 22 Nov 2023 13:13:50 +0100 Subject: [PATCH 5/5] Update url to 2.5.0 --- url/Cargo.toml | 8 ++++---- url/src/lib.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/url/Cargo.toml b/url/Cargo.toml index 969706d92..a50ab31f1 100644 --- a/url/Cargo.toml +++ b/url/Cargo.toml @@ -2,7 +2,7 @@ name = "url" # When updating version, also modify html_root_url in the lib.rs -version = "2.4.1" +version = "2.5.0" authors = ["The rust-url developers"] description = "URL library for Rust, based on the WHATWG URL Standard" @@ -22,9 +22,9 @@ serde_json = "1.0" bencher = "0.1" [dependencies] -form_urlencoded = { version = "1.2.0", path = "../form_urlencoded" } -idna = { version = "0.4.0", path = "../idna" } -percent-encoding = { version = "2.3.0", path = "../percent_encoding" } +form_urlencoded = { version = "1.2.1", path = "../form_urlencoded" } +idna = { version = "0.5.0", path = "../idna" } +percent-encoding = { version = "2.3.1", path = "../percent_encoding" } serde = { version = "1.0", optional = true, features = ["derive"] } [features] diff --git a/url/src/lib.rs b/url/src/lib.rs index 71b12ff64..b17b82573 100644 --- a/url/src/lib.rs +++ b/url/src/lib.rs @@ -134,7 +134,7 @@ url = { version = "2", features = ["debugger_visualizer"] } */ -#![doc(html_root_url = "https://docs.rs/url/2.4.1")] +#![doc(html_root_url = "https://docs.rs/url/2.5.0")] #![cfg_attr( feature = "debugger_visualizer", debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")