Skip to content

Commit

Permalink
Remove default-features for sqlx
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljharvey committed Aug 19, 2024
1 parent 1ee2c67 commit 8ec48ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ serde_yaml = "0.9"
similar-asserts = "1"
smol_str = "0.1"
sqlformat = "0.2"
sqlx = "0.7"
sqlx = { version = "0.7", default-features = false }
tempfile = "3"
test-each = "0.2"
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ schemars = { workspace = true, features = ["smol_str", "preserve_order"] }
serde = { workspace = true }
serde_json = { workspace = true, features = ["raw_value"] }
smol_str = { workspace = true }
sqlx = { workspace = true, features = ["json", "postgres", "runtime-tokio-rustls"] }
sqlx = { workspace = true, default-features = false, features = ["json", "macros", "postgres", "runtime-tokio-rustls"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/connectors/ndc-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mimalloc = { workspace = true }
percent-encoding = { workspace = true }
prometheus = { workspace = true }
serde_json = { workspace = true, features = ["raw_value"] }
sqlx = { workspace = true, features = ["json", "postgres", "runtime-tokio-rustls"] }
sqlx = { workspace = true, default-features = false, features = ["json", "postgres", "runtime-tokio-rustls"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/query-engine/execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ bytes = { workspace = true }
prometheus = { workspace = true }
serde_json = { workspace = true }
sqlformat = { workspace = true }
sqlx = { workspace = true, features = ["json", "postgres", "runtime-tokio-rustls", "uuid"] }
sqlx = { workspace = true, default-features = false, features = ["json", "postgres", "runtime-tokio-rustls", "uuid"] }
thiserror = { workspace = true }
tracing = { workspace = true }
2 changes: 1 addition & 1 deletion crates/tests/tests-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ hyper = { workspace = true, features = ["tcp"] }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true, features = ["raw_value"] }
sqlx = { workspace = true, features = [ "json", "postgres", "runtime-tokio-rustls" ] }
sqlx = { workspace = true, default-features = false, features = [ "json", "postgres", "runtime-tokio-rustls" ] }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
url = { workspace = true }
Expand Down

0 comments on commit 8ec48ea

Please sign in to comment.