Skip to content

Commit 00e9e18

Browse files
authored
Update url 2.5.0 (#885)
* Update data-url to 0.3.1 * Update percent_encoding to 2.3.1 * Update form_urlencoded to 1.2.1 * Update idna to 0.5.0 * Update url to 2.5.0
1 parent 464b1f7 commit 00e9e18

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

data-url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "data-url"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Simon Sapin <[email protected]>"]
55
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
66
categories = ["no_std"]

form_urlencoded/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "form_urlencoded"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["The rust-url developers"]
55
description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
66
categories = ["no_std"]

idna/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "idna"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["The rust-url developers"]
55
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
66
categories = ["no_std"]

percent_encoding/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "percent-encoding"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
authors = ["The rust-url developers"]
55
description = "Percent encoding and decoding"
66
categories = ["no_std"]

url/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "url"
44
# When updating version, also modify html_root_url in the lib.rs
5-
version = "2.4.1"
5+
version = "2.5.0"
66
authors = ["The rust-url developers"]
77

88
description = "URL library for Rust, based on the WHATWG URL Standard"
@@ -22,9 +22,9 @@ serde_json = "1.0"
2222
bencher = "0.1"
2323

2424
[dependencies]
25-
form_urlencoded = { version = "1.2.0", path = "../form_urlencoded" }
26-
idna = { version = "0.4.0", path = "../idna" }
27-
percent-encoding = { version = "2.3.0", path = "../percent_encoding" }
25+
form_urlencoded = { version = "1.2.1", path = "../form_urlencoded" }
26+
idna = { version = "0.5.0", path = "../idna" }
27+
percent-encoding = { version = "2.3.1", path = "../percent_encoding" }
2828
serde = { version = "1.0", optional = true, features = ["derive"] }
2929

3030
[features]

url/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ url = { version = "2", features = ["debugger_visualizer"] }
134134
135135
*/
136136

137-
#![doc(html_root_url = "https://docs.rs/url/2.4.1")]
137+
#![doc(html_root_url = "https://docs.rs/url/2.5.0")]
138138
#![cfg_attr(
139139
feature = "debugger_visualizer",
140140
debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")

0 commit comments

Comments
 (0)