# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "sqlx-rt_wasi" version = "0.6.2" authors = [ "Ryan Leckey ", "Austin Bonander ", ] description = "Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly." license = "MIT OR Apache-2.0" repository = "https://github.com/WasmEdge/sqlx" [lib] name = "sqlx_rt" path = "src/lib.rs" [dependencies.async-native-tls] version = "0.4.0" optional = true [dependencies.async-std] version = "1.7.0" features = ["unstable"] optional = true [dependencies.futures-rustls] version = "0.22.0" optional = true [dependencies.native-tls] version = "0.2.4" optional = true [dependencies.once_cell] version = "1.4" features = ["std"] optional = true [dependencies.tokio-native-tls] version = "0.3.0" optional = true [dependencies.tokio-rustls] version = "0.23.0" optional = true [dependencies.tokio_wasi] version = "1" features = [ "fs", "net", "rt", "time", "io-util", "sync", ] optional = true [features] _rt-async-std = ["async-std"] _rt-tokio = [ "tokio_wasi", "once_cell", ] _tls-native-tls = ["native-tls"] _tls-rustls = [] default = ["runtime-tokio-rustls"] runtime-actix-native-tls = ["runtime-tokio-native-tls"] runtime-actix-rustls = ["runtime-tokio-rustls"] runtime-async-std-native-tls = [ "_rt-async-std", "_tls-native-tls", "async-native-tls", ] runtime-async-std-rustls = [ "_rt-async-std", "_tls-rustls", "futures-rustls", ] runtime-tokio-native-tls = [ "_rt-tokio", "_tls-native-tls", "tokio-native-tls", ] runtime-tokio-rustls = ["_rt-tokio"]