mirror of
https://github.com/openharmony/third_party_rust_rust-url.git
synced 2026-06-30 21:07:58 -04:00
Bump url version to 2.3.1 and bump minor for dependencies
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "data-url"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
|
||||
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
|
||||
repository = "https://github.com/servo/rust-url"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "form_urlencoded"
|
||||
version = "1.0.1"
|
||||
version = "1.1.0"
|
||||
authors = ["The rust-url developers"]
|
||||
description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
|
||||
repository = "https://github.com/servo/rust-url"
|
||||
@@ -12,4 +12,4 @@ rust-version = "1.51"
|
||||
test = false
|
||||
|
||||
[dependencies]
|
||||
percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
|
||||
percent-encoding = { version = "2.2.0", path = "../percent_encoding" }
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "idna"
|
||||
version = "0.2.3"
|
||||
version = "0.3.0"
|
||||
authors = ["The rust-url developers"]
|
||||
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
|
||||
repository = "https://github.com/servo/rust-url/"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "percent-encoding"
|
||||
version = "2.1.0"
|
||||
version = "2.2.0"
|
||||
authors = ["The rust-url developers"]
|
||||
description = "Percent encoding and decoding"
|
||||
repository = "https://github.com/servo/rust-url/"
|
||||
|
||||
+4
-4
@@ -2,7 +2,7 @@
|
||||
|
||||
name = "url"
|
||||
# When updating version, also modify html_root_url in the lib.rs
|
||||
version = "2.3.0"
|
||||
version = "2.3.1"
|
||||
authors = ["The rust-url developers"]
|
||||
|
||||
description = "URL library for Rust, based on the WHATWG URL Standard"
|
||||
@@ -28,9 +28,9 @@ debugger_test = "0.1"
|
||||
debugger_test_parser = "0.1"
|
||||
|
||||
[dependencies]
|
||||
form_urlencoded = { version = "1.0.0", path = "../form_urlencoded" }
|
||||
idna = { version = "0.2.0", path = "../idna" }
|
||||
percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
|
||||
form_urlencoded = { version = "1.1.0", path = "../form_urlencoded" }
|
||||
idna = { version = "0.3.0", path = "../idna" }
|
||||
percent-encoding = { version = "2.2.0", path = "../percent_encoding" }
|
||||
serde = {version = "1.0", optional = true, features = ["derive"]}
|
||||
|
||||
[features]
|
||||
|
||||
+1
-1
@@ -121,7 +121,7 @@ url = { version = "2", features = ["serde"] }
|
||||
|
||||
*/
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/url/2.3.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/url/2.3.1")]
|
||||
#![cfg_attr(
|
||||
feature = "debugger_visualizer",
|
||||
feature(debugger_visualizer),
|
||||
|
||||
Reference in New Issue
Block a user