1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
Description: Disable http3 feature and related deps, deemed unstable upstream
Forwarded: not-needed
Last-Update: 2025-12-24
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -73,3 +73,3 @@
"rustls?/ring",
- "quinn?/ring",
+# "quinn?/ring",
]
@@ -123,7 +123,7 @@
-http3 = [
- "rustls-tls-manual-roots",
- "dep:h3",
- "dep:h3-quinn",
- "dep:quinn",
- "tokio/macros",
-]
+#http3 = [
+# "rustls-tls-manual-roots",
+# "dep:h3",
+# "dep:h3-quinn",
+# "dep:quinn",
+# "tokio/macros",
+#]
@@ -382,9 +382,9 @@
-[target.'cfg(not(target_arch = "wasm32"))'.dependencies.h3]
-version = "0.0.8"
-optional = true
-
-[target.'cfg(not(target_arch = "wasm32"))'.dependencies.h3-quinn]
-version = "0.0.10"
-optional = true
+#[target.'cfg(not(target_arch = "wasm32"))'.dependencies.h3]
+#version = "0.0.8"
+#optional = true
+
+#[target.'cfg(not(target_arch = "wasm32"))'.dependencies.h3-quinn]
+#version = "0.0.10"
+#optional = true
@@ -452,14 +452,14 @@
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.pin-project-lite]
version = "0.2.11"
-[target.'cfg(not(target_arch = "wasm32"))'.dependencies.quinn]
-version = "0.11.1"
-features = [
- "rustls",
- "runtime-tokio",
-]
-optional = true
-default-features = false
+#[target.'cfg(not(target_arch = "wasm32"))'.dependencies.quinn]
+#version = "0.11.1"
+#features = [
+# "rustls",
+# "runtime-tokio",
+#]
+#optional = true
+#default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rustls]
version = "0.23.4"
|