We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uuid
When including sqlx with no features but uuid, it will pull in database specific dependencies (e.g. sqlx-postgres, sqlx-sqlite and sqlx-mysql
sqlx
sqlx-postgres
sqlx-sqlite
sqlx-mysql
Create an empty crate with only the following dependency, build/check and look into Cargo.lock:
Cargo.lock
sqlx = { version = "0.7.4", default-features = false, features = ["uuid"] }
I get the following entry in my Cargo.lock:
[[package]] name = "sqlx" version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" dependencies = [ "sqlx-core", "sqlx-macros", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", ]
0.7.4
rustc --version
1.77.2
The text was updated successfully, but these errors were encountered:
Known issue, see #3211
Sorry, something went wrong.
Sorry I missed this and didn't look further for other issues...
No branches or pull requests
Bug Description
When including
sqlx
with no features butuuid
, it will pull in database specific dependencies (e.g.sqlx-postgres
,sqlx-sqlite
andsqlx-mysql
Minimal Reproduction
Create an empty crate with only the following dependency, build/check and look into
Cargo.lock
:I get the following entry in my
Cargo.lock
:Info
0.7.4
uuid
rustc --version
:1.77.2
The text was updated successfully, but these errors were encountered: