Skip to main content

prek_pty/
lib.rs

1// Vendored crate from: https://crates.io/crates/pty-process
2
3#![cfg(unix)]
4
5mod error;
6#[allow(clippy::module_inception)]
7mod pty;
8mod sys;
9mod types;
10
11pub use error::{Error, Result};
12pub use pty::{OwnedReadPty, OwnedWritePty, Pts, Pty, ReadPty, WritePty, open};
13pub use types::Size;