aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 42c39f401c1bb0003622cd1d6995003735c64ee8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod command;
pub use command::Command;
mod error;
pub use error::{Error, Result};
mod pty;
pub use pty::{Pty, Size};

pub mod std;

#[cfg(feature = "backend-async-std")]
pub mod async_std;
#[cfg(feature = "backend-smol")]
pub mod smol;
#[cfg(feature = "backend-tokio")]
pub mod tokio;