Skip to content

Commit

Permalink
rt: Normalize TOML array formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Jan 14, 2021
1 parent be0a742 commit bb3992c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions sqlx-rt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ authors = [
]

[features]
runtime-actix-native-tls = [ "_rt-actix", "_tls-native-tls", "tokio-native-tls" ]
runtime-async-std-native-tls = [ "_rt-async-std", "_tls-native-tls", "async-native-tls" ]
runtime-tokio-native-tls = [ "_rt-tokio", "_tls-native-tls", "tokio-native-tls" ]
runtime-actix-native-tls = ["_rt-actix", "_tls-native-tls", "tokio-native-tls"]
runtime-async-std-native-tls = ["_rt-async-std", "_tls-native-tls", "async-native-tls"]
runtime-tokio-native-tls = ["_rt-tokio", "_tls-native-tls", "tokio-native-tls"]

runtime-actix-rustls = [ "_rt-actix", "_tls-rustls", "tokio-rustls" ]
runtime-async-std-rustls = [ "_rt-async-std", "_tls-rustls", "async-rustls" ]
runtime-tokio-rustls = [ "_rt-tokio", "_tls-rustls", "tokio-rustls" ]
runtime-actix-rustls = ["_rt-actix", "_tls-rustls", "tokio-rustls"]
runtime-async-std-rustls = ["_rt-async-std", "_tls-rustls", "async-rustls"]
runtime-tokio-rustls = ["_rt-tokio", "_tls-rustls", "tokio-rustls"]

# Not used directly and not re-exported from sqlx
_rt-actix = [ "actix-rt", "actix-threadpool", "tokio", "once_cell" ]
_rt-async-std = [ "async-std" ]
_rt-tokio = [ "tokio", "once_cell" ]
_tls-native-tls = [ "native-tls" ]
_tls-rustls = [ ]
_rt-actix = ["actix-rt", "actix-threadpool", "tokio", "once_cell"]
_rt-async-std = ["async-std"]
_rt-tokio = ["tokio", "once_cell"]
_tls-native-tls = ["native-tls"]
_tls-rustls = []

[dependencies]
async-native-tls = { version = "0.3.3", optional = true }
async-rustls = { version = "0.2.0", optional = true }
actix-rt = { version = "=2.0.0-beta.2", default-features = false, optional = true }
actix-threadpool = { version = "0.3.2", optional = true }
async-std = { version = "1.7.0", features = [ "unstable" ], optional = true }
async-std = { version = "1.7.0", features = ["unstable"], optional = true }
tokio-native-tls = { version = "0.3.0", optional = true }
tokio-rustls = { version = "0.22.0", optional = true }
native-tls = { version = "0.2.4", optional = true }
Expand Down

0 comments on commit bb3992c

Please sign in to comment.