mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-21 01:23:59 +00:00
fix: allow sqlx to be compiled without any features
This commit is contained in:
@@ -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 {}
|
||||
|
||||
Reference in New Issue
Block a user