Jelajahi Sumber

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
Valentin Gosu 2 tahun lalu
induk
melakukan
00e9e18ce6
6 mengubah file dengan 9 tambahan dan 9 penghapusan
  1. 1 1
      data-url/Cargo.toml
  2. 1 1
      form_urlencoded/Cargo.toml
  3. 1 1
      idna/Cargo.toml
  4. 1 1
      percent_encoding/Cargo.toml
  5. 4 4
      url/Cargo.toml
  6. 1 1
      url/src/lib.rs

+ 1 - 1
data-url/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "data-url"
-version = "0.3.0"
+version = "0.3.1"
 authors = ["Simon Sapin <simon.sapin@exyr.org>"]
 description = "Processing of data: URL according to WHATWG’s Fetch Standard"
 categories = ["no_std"]

+ 1 - 1
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"]

+ 1 - 1
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"]

+ 1 - 1
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"]

+ 4 - 4
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]

+ 1 - 1
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")