Skip to content

Commit

Permalink
Remove sqlx default-features (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
cycraig authored Sep 27, 2023
1 parent 8e6702a commit 93d5c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ byteorder = "1"
bytes = "1"
postgres = { version = "0.19", optional = true }
diesel = { version = "2", features = ["postgres"], optional = true }
sqlx = { version = ">= 0.5, < 0.8", features = ["postgres"], optional = true }
sqlx = { version = ">= 0.5, < 0.8", default-features = false, features = ["postgres"], optional = true }

[dev-dependencies]
sqlx = { version = "0", features = ["runtime-async-std-native-tls"] }
sqlx = { version = "0", default-features = false, features = ["runtime-async-std-native-tls"] }
async-std = { version = "1", features = ["attributes"] }

[features]
Expand Down

0 comments on commit 93d5c47

Please sign in to comment.