Skip to content

Commit

Permalink
Prepare url crate for publication with idna 1.0.3 (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsivonen authored Nov 4, 2024
1 parent 6e032ab commit 7ead88b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"] }
Expand All @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion url/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 7ead88b

Please sign in to comment.