Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a47d8e9

Browse filesBrowse files
Merge pull request theseus-rs#163 from theseus-rs/rename-feature-rustls-tls
refactor!: rename feature rustls-tls to rustls
2 parents 8747979 + d1edefd commit a47d8e9
Copy full SHA for a47d8e9

File tree

Expand file treeCollapse file tree

7 files changed

+9
-9
lines changed
Filter options
Expand file treeCollapse file tree

7 files changed

+9
-9
lines changed

‎postgresql_archive/Cargo.toml

Copy file name to clipboardExpand all lines: postgresql_archive/Cargo.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ maven = [
6666
]
6767
md5 = ["dep:md-5"]
6868
native-tls = ["reqwest/native-tls"]
69-
rustls-tls = ["reqwest/rustls-tls-native-roots"]
69+
rustls = ["reqwest/rustls-tls-native-roots"]
7070
sha1 = ["dep:sha1"]
7171
sha2 = ["dep:sha2"]
7272
theseus = [

‎postgresql_archive/README.md

Copy file name to clipboardExpand all lines: postgresql_archive/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following features are available:
5454
| `blocking` | Enables the blocking API | No |
5555
| `indicatif` | Enables tracing-indcatif support | No |
5656
| `native-tls` | Enables native-tls support | Yes |
57-
| `rustls-tls` | Enables rustls-tls support | No |
57+
| `rustls` | Enables rustls support | No |
5858

5959
### Configurations
6060

‎postgresql_archive/src/lib.rs

Copy file name to clipboardExpand all lines: postgresql_archive/src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
//! |--------------|----------------------------|----------|
6060
//! | `blocking` | Enables the blocking API | No |
6161
//! | `native-tls` | Enables native-tls support | Yes |
62-
//! | `rustls-tls` | Enables rustls-tls support | No |
62+
//! | `rustls` | Enables rustls support | No |
6363
//!
6464
//! ### Configurations
6565
//!

‎postgresql_embedded/Cargo.toml

Copy file name to clipboardExpand all lines: postgresql_embedded/Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ native-tls = [
5151
"postgresql_archive/native-tls",
5252
"sqlx/tls-native-tls",
5353
]
54-
rustls-tls = [
55-
"postgresql_archive/rustls-tls",
54+
rustls = [
55+
"postgresql_archive/rustls",
5656
"sqlx/tls-rustls",
5757
]
5858
theseus = [

‎postgresql_embedded/README.md

Copy file name to clipboardExpand all lines: postgresql_embedded/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The following features are available:
105105
| `blocking` | Enables the blocking API; requires `tokio` | No |
106106
| `indicatif` | Enables tracing-indcatif support | No |
107107
| `native-tls` | Enables native-tls support | Yes |
108-
| `rustls-tls` | Enables rustls-tls support | No |
108+
| `rustls` | Enables rustls support | No |
109109
| `theseus` | Enables theseus PostgreSQL binaries | Yes |
110110
| `tokio` | Enables using tokio for async | No |
111111
| `zonky` | Enables zonky PostgreSQL binaries | No |

‎postgresql_embedded/src/lib.rs

Copy file name to clipboardExpand all lines: postgresql_embedded/src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
//! | `bundled` | Bundles the PostgreSQL archive into the resulting binary | No |
9393
//! | `blocking` | Enables the blocking API; requires `tokio` | No |
9494
//! | `native-tls` | Enables native-tls support | Yes |
95-
//! | `rustls-tls` | Enables rustls-tls support | No |
95+
//! | `rustls` | Enables rustls support | No |
9696
//! | `theseus` | Enables theseus PostgreSQL binaries | Yes |
9797
//! | `tokio` | Enables using tokio for async | No |
9898
//! | `zonky` | Enables zonky PostgreSQL binaries | No |

‎postgresql_extensions/Cargo.toml

Copy file name to clipboardExpand all lines: postgresql_extensions/Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ native-tls = [
6060
"postgresql_archive/native-tls",
6161
"reqwest/native-tls",
6262
]
63-
rustls-tls = [
64-
"postgresql_archive/rustls-tls",
63+
rustls = [
64+
"postgresql_archive/rustls",
6565
"reqwest/rustls-tls-native-roots",
6666
]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.