From f3e8046eff473aa9bf940b7fbd156cf3dfbfa352 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Feb 2021 00:17:01 -0500 Subject: also create separate pty structs per backend for now, they are identical, but i will change them to be specialized next --- src/lib.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 112bec1..76bbf9c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,13 @@ mod command; -pub use command::{Child, Command}; +pub use command::Command; mod error; pub use error::{Error, Result}; mod pty; pub use pty::{Pty, Size}; + +pub mod std; + +#[cfg(feature = "async-std")] +pub mod async_std; +#[cfg(feature = "tokio")] +pub mod tokio; -- cgit v1.2.3-54-g00ecf