├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── src ├── handle.rs ├── lib.rs ├── pipe_unix.rs ├── pipe_windows.rs ├── static_pipe.rs └── tests.rs └── tests └── duplex.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | todo.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/README.md -------------------------------------------------------------------------------- /src/handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/handle.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pipe_unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/pipe_unix.rs -------------------------------------------------------------------------------- /src/pipe_windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/pipe_windows.rs -------------------------------------------------------------------------------- /src/static_pipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/static_pipe.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/src/tests.rs -------------------------------------------------------------------------------- /tests/duplex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eolu/ipipe/HEAD/tests/duplex.rs --------------------------------------------------------------------------------