From e03af9d3a961d490f88e339d37649249cb7506c5 Mon Sep 17 00:00:00 2001 From: Asakura Mizu Date: Sat, 24 Aug 2024 20:43:10 +0800 Subject: [PATCH] chore(quic): rustls provider --- compio-quic/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compio-quic/Cargo.toml b/compio-quic/Cargo.toml index 2d9f2c32..bc5cca9b 100644 --- a/compio-quic/Cargo.toml +++ b/compio-quic/Cargo.toml @@ -23,7 +23,7 @@ compio-net = { workspace = true } compio-runtime = { workspace = true, features = ["time"] } quinn-proto = "0.11.3" -rustls = { workspace = true, features = ["ring"] } +rustls = { workspace = true } rustls-platform-verifier = { version = "0.3.3", optional = true } rustls-native-certs = { version = "0.7.1", optional = true } webpki-roots = { version = "0.26.3", optional = true } @@ -67,6 +67,7 @@ platform-verifier = ["dep:rustls-platform-verifier"] native-certs = ["dep:rustls-native-certs"] webpki-roots = ["dep:webpki-roots"] h3 = ["dep:h3"] +# FIXME: see https://github.com/quinn-rs/quinn/pull/1962 [[example]] name = "http3-client"