Skip to content

Commit

Permalink
Set runtime features for sqlx. (#2171)
Browse files Browse the repository at this point in the history
* Set runtime features for sqlx.

* Apply suggestions from code review

---------

Co-authored-by: Danny de Jong <ddejong@therp.nl>
Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
  • Loading branch information
3 people committed Mar 29, 2024
1 parent c8c02f6 commit e34f09d
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 @@ -91,7 +91,7 @@ sqlx-mysql = ["sqlx-dep", "sea-query-binder/sqlx-mysql", "sqlx/mysql"]
sqlx-postgres = ["sqlx-dep", "sea-query-binder/sqlx-postgres", "sqlx/postgres", "postgres-array"]
sqlx-sqlite = ["sqlx-dep", "sea-query-binder/sqlx-sqlite", "sqlx/sqlite"]
sqlite-use-returning-for-3_35 = []
runtime-async-std = []
runtime-async-std = ["sqlx?/runtime-async-std"]
runtime-async-std-native-tls = [
"sqlx?/runtime-async-std-native-tls",
"sea-query-binder?/runtime-async-std-native-tls",
Expand All @@ -113,7 +113,7 @@ runtime-actix-rustls = [
"sea-query-binder?/runtime-actix-rustls",
"runtime-actix",
]
runtime-tokio = []
runtime-tokio = ["sqlx?/runtime-tokio"]
runtime-tokio-native-tls = [
"sqlx?/runtime-tokio-native-tls",
"sea-query-binder?/runtime-tokio-native-tls",
Expand Down

0 comments on commit e34f09d

Please sign in to comment.