mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
windows fix
This commit is contained in:
parent
5ad4814515
commit
70ef992714
@ -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;
|
||||||
|
@ -4,9 +4,9 @@ cfg_if! {
|
|||||||
if #[cfg(unix)] {
|
if #[cfg(unix)] {
|
||||||
mod unix;
|
mod unix;
|
||||||
pub use unix::*;
|
pub use unix::*;
|
||||||
}
|
|
||||||
else if #[cfg(windows)] {
|
|
||||||
mod windows;
|
|
||||||
pub use windows::*;
|
|
||||||
}
|
}
|
||||||
|
// else if #[cfg(windows)] {
|
||||||
|
// mod windows;
|
||||||
|
// pub use windows::*;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user