Open hamirmahal opened 1 month ago
Thanks for the heads up. I don't have time nor need to maintain this crate any more.
Would you be open to sending a PR to fix this? Otherwise perhaps better to just archive this repo.
You're welcome. I've been looking into it, and
Compiling mio-anonymous-pipes v0.2.0 (/home/hamir/mio-anonymous-pipes)
error[E0432]: unresolved import `miow::pipe`
--> src/lib.rs:2:11
|
2 | use miow::pipe::{AnonRead, AnonWrite};
| ^^^^ could not find `pipe` in `miow`
is an error that's persisting at
use miow::pipe::{AnonRead, AnonWrite};
even after trying several different versions of
miow = "0.3"
in Cargo.toml
.
None of these worked.
miow = "0.6"
miow = "0.5"
miow = "0.4"
miow = "0.3.7"
miow = "0.3"
miow = "0.2"
miow = "0.1"
Just a thought, what OS are you using? This crate (and its dependencies) are windows-specific.
Oh, I'm on Ubuntu 22.04 LTS.