pipedconsole 0.1.4

Piped console is a (currently windows-only) rust crate wich allows you to easily manage two or more different consoles from within one process.
1
2
3
4
5
6

//! This is an internal module, used for communication
//! through a pipe using the [`send`] and [`receive`] function.

#[path = r"com/send.rs"] pub(crate) mod send;
#[path = r"com/receive.rs"] pub(crate) mod receive;