Skip to content

Commit

Permalink
fix: agree one a single default runtime for the whole workspace
Browse files Browse the repository at this point in the history
This fixes `cargo check --workspace` and rust-analyzer.

Also see <#1956>.
  • Loading branch information
crepererum committed Jul 21, 2022
1 parent 2182925 commit e0611d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlx-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ remove_dir_all = "0.7.0"

[features]
default = ["postgres", "sqlite", "mysql", "native-tls"]
rustls = ["sqlx/runtime-tokio-rustls"]
native-tls = ["sqlx/runtime-tokio-native-tls"]
rustls = ["sqlx/runtime-async-std-rustls"]
native-tls = ["sqlx/runtime-async-std-native-tls"]

# databases
mysql = ["sqlx/mysql"]
Expand Down

0 comments on commit e0611d3

Please sign in to comment.