Skip to content

Commit

Permalink
Non TLS runtime (#134)
Browse files Browse the repository at this point in the history
* Non TLS runtime

* Fix
  • Loading branch information
billy1624 authored Jun 19, 2024
1 parent 758314e commit d221e1c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,18 @@ sqlx-sqlite = [
"sea-query-binder/sqlx-sqlite",
"sqlx/sqlite",
]
runtime-actix = [
"sqlx?/runtime-tokio",
"sea-query-binder?/runtime-actix",
]
runtime-async-std = [
"sqlx?/runtime-async-std",
"sea-query-binder?/runtime-async-std",
]
runtime-tokio = [
"sqlx?/runtime-tokio",
"sea-query-binder?/runtime-tokio",
]
runtime-actix-native-tls = [
"sqlx?/runtime-tokio-native-tls",
"sea-query-binder?/runtime-actix-native-tls",
Expand All @@ -102,3 +114,7 @@ runtime-tokio-rustls = [
"sea-query-binder?/runtime-tokio-rustls",
]
with-serde = ["serde"]

[patch.crates-io]
sea-query = { git = "https://github.com/seaql/sea-query", branch = "non-tls-runtime" }
sea-query-binder = { git = "https://github.com/seaql/sea-query", branch = "non-tls-runtime" }

0 comments on commit d221e1c

Please sign in to comment.