fix: make sqlx_rt::block_on pub not pub(crate)

This commit is contained in:
Ryan Leckey 2020-07-03 06:18:24 -07:00
parent dfe5e31c52
commit 921878ad77

View file

@ -119,7 +119,7 @@ pub use async_native_tls::{Error as TlsError, TlsConnector, TlsStream};
feature = "runtime-async-std",
not(any(feature = "runtime-actix", feature = "runtime-tokio"))
))]
pub(crate) use async_std::task::block_on;
pub use async_std::task::block_on;
#[cfg(all(
feature = "runtime-async-std",