mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
fix: allow sqlx to be compiled without any features
This commit is contained in:
parent
2024136c9e
commit
4eae05f9b4
2188
examples/quickstart/Cargo.lock
generated
2188
examples/quickstart/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -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 {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user