Skip to content

refactor!: rename feature rustls-tls to rustls #163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion postgresql_archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ maven = [
]
md5 = ["dep:md-5"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls-native-roots"]
rustls = ["reqwest/rustls-tls-native-roots"]
sha1 = ["dep:sha1"]
sha2 = ["dep:sha2"]
theseus = [
Expand Down
2 changes: 1 addition & 1 deletion postgresql_archive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The following features are available:
| `blocking` | Enables the blocking API | No |
| `indicatif` | Enables tracing-indcatif support | No |
| `native-tls` | Enables native-tls support | Yes |
| `rustls-tls` | Enables rustls-tls support | No |
| `rustls` | Enables rustls support | No |

### Configurations

Expand Down
2 changes: 1 addition & 1 deletion postgresql_archive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
//! |--------------|----------------------------|----------|
//! | `blocking` | Enables the blocking API | No |
//! | `native-tls` | Enables native-tls support | Yes |
//! | `rustls-tls` | Enables rustls-tls support | No |
//! | `rustls` | Enables rustls support | No |
//!
//! ### Configurations
//!
Expand Down
4 changes: 2 additions & 2 deletions postgresql_embedded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ native-tls = [
"postgresql_archive/native-tls",
"sqlx/tls-native-tls",
]
rustls-tls = [
"postgresql_archive/rustls-tls",
rustls = [
"postgresql_archive/rustls",
"sqlx/tls-rustls",
]
theseus = [
Expand Down
2 changes: 1 addition & 1 deletion postgresql_embedded/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The following features are available:
| `blocking` | Enables the blocking API; requires `tokio` | No |
| `indicatif` | Enables tracing-indcatif support | No |
| `native-tls` | Enables native-tls support | Yes |
| `rustls-tls` | Enables rustls-tls support | No |
| `rustls` | Enables rustls support | No |
| `theseus` | Enables theseus PostgreSQL binaries | Yes |
| `tokio` | Enables using tokio for async | No |
| `zonky` | Enables zonky PostgreSQL binaries | No |
Expand Down
2 changes: 1 addition & 1 deletion postgresql_embedded/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
//! | `bundled` | Bundles the PostgreSQL archive into the resulting binary | No |
//! | `blocking` | Enables the blocking API; requires `tokio` | No |
//! | `native-tls` | Enables native-tls support | Yes |
//! | `rustls-tls` | Enables rustls-tls support | No |
//! | `rustls` | Enables rustls support | No |
//! | `theseus` | Enables theseus PostgreSQL binaries | Yes |
//! | `tokio` | Enables using tokio for async | No |
//! | `zonky` | Enables zonky PostgreSQL binaries | No |
Expand Down
4 changes: 2 additions & 2 deletions postgresql_extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ native-tls = [
"postgresql_archive/native-tls",
"reqwest/native-tls",
]
rustls-tls = [
"postgresql_archive/rustls-tls",
rustls = [
"postgresql_archive/rustls",
"reqwest/rustls-tls-native-roots",
]