diff --git a/Cargo.toml b/Cargo.toml index b452a5d..4de328b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,22 +15,20 @@ categories = ["web-programming::http-server", "web-programming", "database"] features = ["pg", "sqlite", "mysql", "async_std"] [features] -default = ["native-tls"] sqlite = ["sqlx/sqlite"] pg = ["sqlx/postgres", "sqlx/json"] -native-tls = ["sqlx/runtime-async-std-native-tls"] -rustls = ["sqlx/runtime-async-std-rustls"] -async_std = ["async-std"] mysql = ["sqlx/mysql", "sqlx/json"] +async_std = ["dep:async-std"] + [dependencies] async-session = "3.0.0" -sqlx = { version = "0.6.2", features = ["chrono"] } +sqlx = { version = "0.6.3", features = ["chrono"] } async-std = { version = "1.12.0", optional = true } [dev-dependencies] async-std = { version = "1.12.0", features = ["attributes"] } [dev-dependencies.sqlx] -version = "0.6.2" +version = "0.6.3" features = ["chrono", "runtime-async-std-native-tls"]