sqlx-rt-oldapi 0.6.55

Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core runtime support for SQLx. **Semver-exempt**, not for general use.

#[cfg(not(any(feature = "native-tls", feature = "rustls")))]
compile_error!("one of the features ['native-tls', 'rustls'] must be enabled");

#[cfg(all(feature = "_tls-native-tls", feature = "_tls-rustls"))]
compile_error!("only one of ['native-tls', 'rustls'] can be enabled");

mod runtime;

#[cfg(feature = "_tls-native-tls")]
pub use native_tls;

pub use runtime::*;