chore(deps): Set default-features=false on sqlx in workspace.dependencies (#3989)

Signed-off-by: Joshua Potts <8704475+iamjpotts@users.noreply.github.com>
This commit is contained in:
iamjpotts 2025-08-27 14:02:27 -04:00 committed by GitHub
parent 4566df70a0
commit 5d4e1a4d4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ sqlx-postgres = { version = "=0.9.0-alpha.1", path = "sqlx-postgres" }
sqlx-sqlite = { version = "=0.9.0-alpha.1", path = "sqlx-sqlite" }
# Facade crate (for reference from sqlx-cli)
sqlx = { version = "=0.9.0-alpha.1", path = "." }
sqlx = { version = "=0.9.0-alpha.1", path = ".", default-features = false }
# Common type integrations shared by multiple driver crates.
# These are optional unless enabled in a workspace crate.

View File

@ -23,7 +23,7 @@ features = ["rt-multi-thread", "macros"]
[dependencies.sqlx]
# version = "0.9.0"
workspace = true
features = ["runtime-tokio", "postgres", "bigdecimal", "chrono", "derive", "migrate", "sqlx-toml"]
features = ["runtime-tokio", "postgres", "bigdecimal", "chrono", "derive", "macros", "migrate", "sqlx-toml"]
[dependencies.uses-rust-decimal]
path = "uses-rust-decimal"