aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.rs
diff options
context:
space:
mode:
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;