-
Notifications
You must be signed in to change notification settings - Fork 117
Closed
Labels
Description
I'm getting the following error on Windows 10:
toml file:
[dependencies]
zeromq = { version = "*", default-features = false, features = ["async-std-runtime", "all-transport"] }
Error:
5 | use async_std::os::unix::net::{UnixListener, UnixStream};
| ^^^^ could not find `unix` in `os`
If I change toml file to:
[dependencies]
zeromq = "0.3.3"
I get:
2 | use tokio::net::{UnixListener, UnixStream};
| ^^^^^^^^^^^^ ^^^^^^^^^^ no `UnixStream` in `net`
| |
| no `UnixListener` in `net`
| help: a similar name exists in the module: `TcpListener`
It seems like it's always expecting a Unix system
dlescos