disable async-std+windows build

This commit is contained in:
John Smith
2023-12-17 09:52:10 -05:00
committed by Christien Rioux
parent 633c0394c9
commit 25637e5ff5
7 changed files with 31 additions and 21 deletions

View File

@@ -4,7 +4,8 @@ cfg_if! {
if #[cfg(unix)] {
mod unix;
pub use unix::*;
} else if #[cfg(windows)] {
}
else if #[cfg(windows)] {
mod windows;
pub use windows::*;
}

View File

@@ -0,0 +1 @@
compile_error!{"async-std compilation for windows is currently unsupported"}