Skip to content

Commit

Permalink
Removed default-features from diesel
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Sep 27, 2023
1 parent 93d5c47 commit 415e234
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ readme = "README.md"
byteorder = "1"
bytes = "1"
postgres = { version = "0.19", optional = true }
diesel = { version = "2", features = ["postgres"], optional = true }
diesel = { version = "2", default-features = false, features = ["postgres"], optional = true }
sqlx = { version = ">= 0.5, < 0.8", default-features = false, features = ["postgres"], optional = true }

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

Expand Down

0 comments on commit 415e234

Please sign in to comment.