Skip to content

Commit

Permalink
fix: features = ["mysql"] not working (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
HGZ-20 committed Nov 26, 2023
1 parent 460af5b commit a80e04e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ async-std = { version = "1.9.0", default-features = false, optional = true }
actix-rt = { version = "2.2.0", default-features = false, optional = true }

[features]
default = ["postgres", "runtime-tokio-native-tls", "offline"]
default = ["postgres", "offline"]

#databases
postgres = ["sqlx/postgres"]
mysql = ["sqlx/mysql"]
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres", "runtime-tokio-native-tls"]
mysql = ["sqlx/mysql", "runtime-tokio-native-tls"]
sqlite = ["sqlx/sqlite", "runtime-tokio-native-tls"]

# async runtime
# async-std
Expand Down

0 comments on commit a80e04e

Please sign in to comment.