aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.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/command.rs
parent53dbbd035ffe86e4655c3afd36faa5752ded0737 (diff)
downloadpty-process-c4df4e065955ac20fd6b2d6a3e52be2f91848743.tar.gz
pty-process-c4df4e065955ac20fd6b2d6a3e52be2f91848743.zip
actually conditionalize on the backend-std feature
Diffstat (limited to 'src/command.rs')
-rw-r--r--src/command.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.rs b/src/command.rs
index 2f68786..d6c4b2d 100644
--- a/src/command.rs
+++ b/src/command.rs
@@ -3,10 +3,10 @@ use crate::pty::Pty as _;
use ::std::os::unix::io::AsRawFd as _;
-mod std;
-
#[cfg(any(feature = "backend-async-std", feature = "backend-smol"))]
mod async_process;
+#[cfg(feature = "backend-std")]
+mod std;
#[cfg(feature = "backend-tokio")]
mod tokio;