From 129e3351ae17a48e5e015ee083968813438abb8b Mon Sep 17 00:00:00 2001 From: Niclas Klugmann Date: Fri, 15 Aug 2025 23:32:08 +0200 Subject: [PATCH] fix documentation for rustls native root certificates (#3975) --- sqlx-postgres/src/options/doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-postgres/src/options/doc.md b/sqlx-postgres/src/options/doc.md index 15c2459c8..33dd63b7a 100644 --- a/sqlx-postgres/src/options/doc.md +++ b/sqlx-postgres/src/options/doc.md @@ -86,7 +86,7 @@ See `default_host()` in the same source file as this method for the current beha If `sslrootcert` is not set, the default root certificates used depends on Cargo features: * If `tls-native-tls` is enabled, the system root certificates are used. -* If `tls-rustls-native-roots` is enabled, the system root certificates are used. +* If `tls-rustls-ring-native-roots` is enabled, the system root certificates are used. * Otherwise, TLS roots are populated using the [`webpki-roots`] crate. ## Environment Variables