From a05f70fee55575f9ba3ebaa8b545ec4df8746fd2 Mon Sep 17 00:00:00 2001 From: Henri Sivonen Date: Tue, 29 Oct 2024 18:32:09 +0200 Subject: [PATCH 1/2] Prepare url crate for publication with idna 1.0.3 --- url/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/url/Cargo.toml b/url/Cargo.toml index adc66bda..9001be1b 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.5.2" +version = "2.5.3" authors = ["The rust-url developers"] description = "URL library for Rust, based on the WHATWG URL Standard" @@ -14,7 +14,7 @@ categories = ["parser-implementations", "web-programming", "encoding", "no_std"] license = "MIT OR Apache-2.0" include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"] edition = "2018" -rust-version = "1.56" +rust-version = "1.57" # From idna [dev-dependencies] serde = { version = "1.0", features = ["derive"] } @@ -26,7 +26,7 @@ wasm-bindgen-test = "0.3" [dependencies] form_urlencoded = { version = "1.2.1", path = "../form_urlencoded", default-features = false, features = ["alloc"] } -idna = { version = "1.0.2", path = "../idna", default-features = false, features = ["alloc", "compiled_data"] } +idna = { version = "1.0.3", path = "../idna", default-features = false, features = ["alloc", "compiled_data"] } percent-encoding = { version = "2.3.1", path = "../percent_encoding", default-features = false, features = ["alloc"] } serde = { version = "1.0", optional = true, features = ["derive"] } From c78a0f400d23ed0ce8f4d408f3c1ba825774926a Mon Sep 17 00:00:00 2001 From: Henri Sivonen Date: Mon, 4 Nov 2024 10:44:48 +0200 Subject: [PATCH 2/2] Increment the version of url in html_root_url --- url/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url/src/lib.rs b/url/src/lib.rs index cc263a79..bf944741 100644 --- a/url/src/lib.rs +++ b/url/src/lib.rs @@ -143,7 +143,7 @@ url = { version = "2", features = ["debugger_visualizer"] } */ #![no_std] -#![doc(html_root_url = "https://docs.rs/url/2.5.2")] +#![doc(html_root_url = "https://docs.rs/url/2.5.3")] #![cfg_attr( feature = "debugger_visualizer", debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")