windows fix

This commit is contained in:
John Smith 2023-12-17 10:39:03 -05:00 committed by Christien Rioux
parent 5ad4814515
commit 70ef992714
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
#![recursion_limit = "256"] #![recursion_limit = "256"]
#[cfg(all(feature = "rt-async-std", windows))] #[cfg(all(feature = "rt-async-std", windows))]
compile_error! {"async-std compilation for windows is currently unsupported"} compile_error! {"async-std compilation for windows is currently unsupportedg"}
mod client_api; mod client_api;
mod server; mod server;

View File

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