diff --git a/Cargo.toml b/Cargo.toml index bacece8..390ee6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-sqlx-session" -version = "0.4.0" +version = "0.4.1" authors = ["Jacob Rothstein "] edition = "2018" description = "sqlx session store for async-session" @@ -12,15 +12,15 @@ keywords = ["sessions", "sqlx", "sqlite", "postgres", "mysql"] categories = ["web-programming::http-server", "web-programming", "database"] [package.metadata.docs.rs] -features = ["pg", "sqlite", "mysql", "async_std"] +features = ["pg", "sqlite", "mysql", "async_std_native_tls", "async_std_rustls", "tokio_native_tls", "tokio_rustls"] [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"] +async_std_native_tls = ["sqlx/runtime-async-std-native-tls", "async-std"] +async_std_rustls = ["sqlx/runtime-async-std-rustls", "async-std"] +tokio_native_tls = ["sqlx/runtime-tokio-native-tls"] +tokio_rustls = ["sqlx/runtime-tokio-rustls"] mysql = ["sqlx/mysql", "sqlx/json"] [dependencies] @@ -33,4 +33,4 @@ async-std = { version = "1.9.0", features = ["attributes"] } [dev-dependencies.sqlx] version = "0.5.5" -features = ["chrono", "runtime-async-std-native-tls"] +features = ["chrono", "runtime-async-std-native-tls"] \ No newline at end of file