mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 07:21:08 +00:00
remove default runtime, you must now always select a runtime
This commit is contained in:
parent
12da5ba534
commit
f22a3f5a5d
@ -37,7 +37,7 @@ features = [ "all" ]
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[features]
|
||||
default = [ "macros", "runtime-async-std-native-tls", "migrate" ]
|
||||
default = [ "macros", "migrate" ]
|
||||
macros = [ "sqlx-macros" ]
|
||||
migrate = [ "sqlx-macros/migrate", "sqlx-core/migrate" ]
|
||||
|
||||
|
19
README.md
19
README.md
@ -103,32 +103,23 @@ with C, those interactions are `unsafe`.</sup></sub>
|
||||
|
||||
## Install
|
||||
|
||||
SQLx is compatible with the [`async-std`], [`tokio`] and [`actix`] runtimes.
|
||||
SQLx is compatible with the [`async-std`], [`tokio`] and [`actix`] runtimes; and, the [`native-tls`] and [`rustls`] TLS backends. When adding the dependency, you must chose a runtime feature that is `runtime` + `tls`.
|
||||
|
||||
[`async-std`]: https://github.com/async-rs/async-std
|
||||
[`tokio`]: https://github.com/tokio-rs/tokio
|
||||
[`actix`]: https://github.com/actix/actix-net
|
||||
|
||||
You can also select between [`native-tls`] and [`rustls`] for the TLS backend.
|
||||
|
||||
By default, you get `async-std` + `native-tls`. If you want a different runtime or TLS backend, just disable the default features and activate the corresponding feature, for example for tokio + rustls:
|
||||
|
||||
```toml
|
||||
# Cargo.toml
|
||||
[dependencies]
|
||||
sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "runtime-tokio-rustls", "macros" ] }
|
||||
# tokio + rustls
|
||||
sqlx = { version = "0.4.0", features = [ "runtime-tokio-rustls" ] }
|
||||
# async-std + native-tls
|
||||
sqlx = { version = "0.4.0", features = [ "runtime-async-std-native-tls" ] }
|
||||
```
|
||||
|
||||
<sub><sup>The runtime and TLS backend not being separate feature sets to select is a workaround for a [Cargo issue](https://github.com/rust-lang/cargo/issues/3494).</sup></sub>
|
||||
|
||||
**actix**
|
||||
|
||||
```toml
|
||||
# Cargo.toml
|
||||
[dependencies]
|
||||
sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "runtime-actix", "macros" ] }
|
||||
```
|
||||
|
||||
#### Cargo Feature Flags
|
||||
|
||||
- `runtime-async-std-native-tls` (on by default): Use the `async-std` runtime and `native-tls` TLS backend.
|
||||
|
@ -16,7 +16,7 @@ authors = [
|
||||
features = ["all-databases", "all-types", "offline"]
|
||||
|
||||
[features]
|
||||
default = [ "runtime-async-std-native-tls", "migrate" ]
|
||||
default = [ "migrate" ]
|
||||
migrate = [ "sha2", "crc" ]
|
||||
|
||||
# databases
|
||||
|
Loading…
x
Reference in New Issue
Block a user