1
0
mirror of https://gitlab.com/veilid/veilid.git synced 2025-04-06 21:14:03 -04:00

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
veilid-server/src
veilid-tools/src/ipc/ipc_async_std

@ -5,7 +5,7 @@
#![recursion_limit = "256"]
#[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 server;

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