Skip to content

Commit 5d4e1a4

Browse files
authored
chore(deps): Set default-features=false on sqlx in workspace.dependencies (#3989)
Signed-off-by: Joshua Potts <[email protected]>
1 parent 4566df7 commit 5d4e1a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ sqlx-postgres = { version = "=0.9.0-alpha.1", path = "sqlx-postgres" }
169169
sqlx-sqlite = { version = "=0.9.0-alpha.1", path = "sqlx-sqlite" }
170170

171171
# Facade crate (for reference from sqlx-cli)
172-
sqlx = { version = "=0.9.0-alpha.1", path = "." }
172+
sqlx = { version = "=0.9.0-alpha.1", path = ".", default-features = false }
173173

174174
# Common type integrations shared by multiple driver crates.
175175
# These are optional unless enabled in a workspace crate.

examples/postgres/preferred-crates/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ features = ["rt-multi-thread", "macros"]
2323
[dependencies.sqlx]
2424
# version = "0.9.0"
2525
workspace = true
26-
features = ["runtime-tokio", "postgres", "bigdecimal", "chrono", "derive", "migrate", "sqlx-toml"]
26+
features = ["runtime-tokio", "postgres", "bigdecimal", "chrono", "derive", "macros", "migrate", "sqlx-toml"]
2727

2828
[dependencies.uses-rust-decimal]
2929
path = "uses-rust-decimal"

0 commit comments

Comments
 (0)