You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installs sqlx-sqlite and sqlx-postgres even when only mysql feature is selected.
Minimal Reproduction
Cargo.toml file:
[package]
name = "example-sqlx"version = "0.1.0"edition = "2021"# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "mysql"] }
Bug Description
Installs
sqlx-sqlite
andsqlx-postgres
even when onlymysql
feature is selected.Minimal Reproduction
Cargo.toml file:
Execute
cargo check
. Contents ofCargo.lock
:Info
0.7.1
["runtime-tokio-rustls", "mysql"]
rustc --version
: rustc 1.71.0 (8ede3aae2 2023-07-12)The text was updated successfully, but these errors were encountered: