aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-03 02:21:24 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-03 02:21:24 -0500
commitc4df4e065955ac20fd6b2d6a3e52be2f91848743 (patch)
treeb9649f0f6bd626dc025b4a681df59a7a390429ec /src/lib.rs
parent53dbbd035ffe86e4655c3afd36faa5752ded0737 (diff)
downloadpty-process-c4df4e065955ac20fd6b2d6a3e52be2f91848743.tar.gz
pty-process-c4df4e065955ac20fd6b2d6a3e52be2f91848743.zip
actually conditionalize on the backend-std feature
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d189676..7d282ef 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,11 +5,11 @@ pub use error::{Error, Result};
mod pty;
pub use pty::Size;
-pub mod std;
-
#[cfg(feature = "backend-async-std")]
pub mod async_std;
#[cfg(feature = "backend-smol")]
pub mod smol;
+#[cfg(feature = "backend-std")]
+pub mod std;
#[cfg(feature = "backend-tokio")]
pub mod tokio;