fix: allow sqlx to be compiled without any features

This commit is contained in:
Ryan Leckey 2021-01-08 16:58:04 -08:00
parent 2024136c9e
commit 4eae05f9b4
No known key found for this signature in database
GPG Key ID: F8AA68C235AB08C9
2 changed files with 8 additions and 2188 deletions

File diff suppressed because it is too large Load Diff

View File

@ -99,3 +99,11 @@ pub mod prelude {
feature = "blocking"
))]
pub use blocking::prelude;
#[cfg(not(any(
feature = "async_std",
feature = "actix",
feature = "tokio",
feature = "blocking"
)))]
pub mod prelude {}