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 96ece15..e908a06 100644
--- a/src/command.rs
+++ b/src/command.rs
@@ -5,9 +5,9 @@ use ::std::os::unix::io::AsRawFd as _;
mod std;
-#[cfg(feature = "async-std")]
+#[cfg(any(feature = "backend-async-std", feature = "backend-smol"))]
mod async_process;
-#[cfg(feature = "tokio")]
+#[cfg(feature = "backend-tokio")]
mod tokio;
pub trait Command {