Explorar el Código

version bump to 2.5.6 (#1065)

edgul hace 1 año
padre
commit
44afd9fe42
Se han modificado 3 ficheros con 6 adiciones y 6 borrados
  1. 1 1
      form_urlencoded/Cargo.toml
  2. 4 4
      url/Cargo.toml
  3. 1 1
      url/src/lib.rs

+ 1 - 1
form_urlencoded/Cargo.toml

@@ -18,7 +18,7 @@ std = ["alloc", "percent-encoding/std"]
 alloc = ["percent-encoding/alloc"]
 
 [dependencies]
-percent-encoding = { version = "2.3.0", default-features = false, path = "../percent_encoding" }
+percent-encoding = { version = "2.3.2", default-features = false, path = "../percent_encoding" }
 
 [package.metadata.docs.rs]
 rustdoc-args = ["--generate-link-to-definition"]

+ 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.5.5"
+version = "2.5.6"
 authors = ["The rust-url developers"]
 
 description = "URL library for Rust, based on the WHATWG URL Standard"
@@ -25,9 +25,9 @@ bencher = "0.1"
 wasm-bindgen-test = "0.3"
 
 [dependencies]
-form_urlencoded = { version = "1.2.1", path = "../form_urlencoded", default-features = false, features = ["alloc"] }
-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"] }
+form_urlencoded = { version = "1.2.2", path = "../form_urlencoded", default-features = false, features = ["alloc"] }
+idna = { version = "1.1.0", path = "../idna", default-features = false, features = ["alloc", "compiled_data"] }
+percent-encoding = { version = "2.3.2", path = "../percent_encoding", default-features = false, features = ["alloc"] }
 serde = { version = "1.0", optional = true, features = ["derive"], default-features = false }
 
 [features]

+ 1 - 1
url/src/lib.rs

@@ -143,7 +143,7 @@ url = { version = "2", features = ["debugger_visualizer"] }
 */
 
 #![no_std]
-#![doc(html_root_url = "https://docs.rs/url/2.5.5")]
+#![doc(html_root_url = "https://docs.rs/url/2.5.6")]
 #![cfg_attr(
     feature = "debugger_visualizer",
     debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")