Skip to content

Commit 921878a

Browse files
committed
fix: make sqlx_rt::block_on pub not pub(crate)
1 parent dfe5e31 commit 921878a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-rt/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ pub use async_native_tls::{Error as TlsError, TlsConnector, TlsStream};
119119
feature = "runtime-async-std",
120120
not(any(feature = "runtime-actix", feature = "runtime-tokio"))
121121
))]
122-
pub(crate) use async_std::task::block_on;
122+
pub use async_std::task::block_on;
123123

124124
#[cfg(all(
125125
feature = "runtime-async-std",

0 commit comments

Comments
 (0)