From cc6781c33b49c6ea67f17dd5564556aa99526418 Mon Sep 17 00:00:00 2001 From: Yin Jifeng Date: Thu, 11 Jul 2024 22:16:56 +0800 Subject: [PATCH 1/2] enable `rustls-platform-verifier` for docs.rs --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b0b6557e..27eeb293 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,5 +56,5 @@ required-features = ["aws-lc-rs"] [package.metadata.docs.rs] no-default-features = true -features = ["http1", "http2", "webpki-tokio", "native-tokio", "ring", "tls12", "logging"] +features = ["http1", "http2", "webpki-tokio", "native-tokio", "ring", "tls12", "logging", "rustls-platform-verifier"] rustdoc-args = ["--cfg", "docsrs"] From 36ef7fcf221ffd835f50a52a854b5334fbfd1f1b Mon Sep 17 00:00:00 2001 From: Yin Jifeng Date: Wed, 4 Sep 2024 09:51:10 +0800 Subject: [PATCH 2/2] chore: sort features --- Cargo.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 27eeb293..b877fea1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,5 +56,14 @@ required-features = ["aws-lc-rs"] [package.metadata.docs.rs] no-default-features = true -features = ["http1", "http2", "webpki-tokio", "native-tokio", "ring", "tls12", "logging", "rustls-platform-verifier"] +features = [ + "http1", + "http2", + "logging", + "native-tokio", + "ring", + "rustls-platform-verifier", + "tls12", + "webpki-tokio", +] rustdoc-args = ["--cfg", "docsrs"]