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
I'm not sure this bug belongs to sqlx or cargo/rust.
When using sqlx = { version = "0.7.4", default-features = false, features = ["postgres"]}, only sqlx, sqlx-core, sqlx-macros, and sqlx-postgres are loaded.
But when I add "migrate", or "uuid", or "chrono", I also see "sqlx-mysql", and "sqlx-sqlite" in my Cargo.lock file.
Minimal Reproduction
Cargo.toml
[package]
name = "test-sqlx"version = "0.1.0"edition = "2021"
[dependencies]
sqlx = { version = "0.7.4", default-features = false, features = ["postgres"]}
Bug Description
I'm not sure this bug belongs to sqlx or cargo/rust.
When using
sqlx = { version = "0.7.4", default-features = false, features = ["postgres"]}
, only sqlx, sqlx-core, sqlx-macros, and sqlx-postgres are loaded.But when I add "migrate", or "uuid", or "chrono", I also see "sqlx-mysql", and "sqlx-sqlite" in my Cargo.lock file.
Minimal Reproduction
Cargo.toml
Results in this Cargo.lock
Cargo.toml
Results in this Cargo.lock
Info
rustc --version
: rustc 1.77.2 (25ef9e3d8 2024-04-09)The text was updated successfully, but these errors were encountered: