diff --git a/Cargo.lock b/Cargo.lock index 9b92d460aff54a..4d5c1fb0f02350 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -874,7 +874,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "rustc-hash", + "rustc-hash 1.1.0", "shlex", "syn 2.0.74", ] @@ -4466,15 +4466,17 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quinn" -version = "0.11.1" -source = "git+https://github.com/lijunwangs/quinn.git?rev=9a2a51efddc8000482f74b15be09d8b2cd58ee5e#9a2a51efddc8000482f74b15be09d8b2cd58ee5e" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156" dependencies = [ "bytes", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash", + "rustc-hash 2.0.0", "rustls 0.23.12", + "socket2 0.5.7", "thiserror", "tokio", "tracing", @@ -4482,13 +4484,14 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.2" -source = "git+https://github.com/lijunwangs/quinn.git?rev=9a2a51efddc8000482f74b15be09d8b2cd58ee5e#9a2a51efddc8000482f74b15be09d8b2cd58ee5e" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd" dependencies = [ "bytes", "rand 0.8.5", "ring 0.17.3", - "rustc-hash", + "rustc-hash 2.0.0", "rustls 0.23.12", "rustls-platform-verifier", "slab", @@ -4499,8 +4502,9 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.1" -source = "git+https://github.com/lijunwangs/quinn.git?rev=9a2a51efddc8000482f74b15be09d8b2cd58ee5e#9a2a51efddc8000482f74b15be09d8b2cd58ee5e" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285" dependencies = [ "libc", "once_cell", @@ -4913,6 +4917,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustc-hash" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" + [[package]] name = "rustc_version" version = "0.3.3" @@ -9039,7 +9049,7 @@ dependencies = [ "once_cell", "pbkdf2 0.4.0", "rand 0.7.3", - "rustc-hash", + "rustc-hash 1.1.0", "sha2 0.9.9", "thiserror", "unicode-normalization", diff --git a/Cargo.toml b/Cargo.toml index f8464a1fec9b70..8a1bfc2cf3b362 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -303,10 +303,10 @@ prost-types = "0.11.9" protobuf-src = "1.1.0" qstring = "0.7.2" qualifier_attr = { version = "0.2.2", default-features = false } -#quinn = "0.11.1" -#quinn-proto = "0.11.2" -quinn = {git = "https://github.com/lijunwangs/quinn.git", rev = "9a2a51efddc8000482f74b15be09d8b2cd58ee5e"} -quinn-proto = {git = "https://github.com/lijunwangs/quinn.git", rev = "9a2a51efddc8000482f74b15be09d8b2cd58ee5e"} +quinn = "0.11.2" +quinn-proto = "0.11.3" +# quinn = {git = "https://github.com/lijunwangs/quinn.git", rev = "9a2a51efddc8000482f74b15be09d8b2cd58ee5e"} +# quinn-proto = {git = "https://github.com/lijunwangs/quinn.git", rev = "9a2a51efddc8000482f74b15be09d8b2cd58ee5e"} quote = "1.0" rand = "0.8.5"