From 25266fcc36065f78c17ffb13d8cbad8bae14ae2d Mon Sep 17 00:00:00 2001 From: Valentin Gosu Date: Wed, 7 Sep 2022 12:33:06 +0200 Subject: [PATCH] Bump url version to 2.3.0 --- url/Cargo.toml | 2 +- url/src/lib.rs | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/url/Cargo.toml b/url/Cargo.toml index 64704757a..bd60ddcea 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.2.2" +version = "2.3.0" authors = ["The rust-url developers"] description = "URL library for Rust, based on the WHATWG URL Standard" diff --git a/url/src/lib.rs b/url/src/lib.rs index e359e74ae..09d749afa 100644 --- a/url/src/lib.rs +++ b/url/src/lib.rs @@ -119,18 +119,9 @@ See [serde documentation](https://serde.rs) for more information. url = { version = "2", features = ["serde"] } ``` -# Feature: `idna` - -You can opt out [idna](https://en.wikipedia.org/wiki/Internationalized_domain_name) support -to reduce final binary size. - -```toml -url = { version = "2", default-features = false } -``` - */ -#![doc(html_root_url = "https://docs.rs/url/2.2.2")] +#![doc(html_root_url = "https://docs.rs/url/2.3.0")] #![cfg_attr( feature = "debugger_visualizer", feature(debugger_visualizer),