aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-02-24 00:21:09 -0500
committerJesse Luehrs <doy@tozt.net>2021-02-24 00:21:09 -0500
commit6b5bf76f565be7727d3bc624589e6b728e93106b (patch)
tree15ab77e327dc190c6f93909b127f5b61b8b56ab9 /src
parent0db59c294fafb44c967f4210630202a41e34cff4 (diff)
downloadpty-process-6b5bf76f565be7727d3bc624589e6b728e93106b.tar.gz
pty-process-6b5bf76f565be7727d3bc624589e6b728e93106b.zip
rename features
Diffstat (limited to 'src')
-rw-r--r--src/command.rs4
-rw-r--r--src/lib.rs4
-rw-r--r--src/pty.rs4
3 files changed, 6 insertions, 6 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 {
diff --git a/src/lib.rs b/src/lib.rs
index 76bbf9c..f16dcc9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,7 +7,7 @@ pub use pty::{Pty, Size};
pub mod std;
-#[cfg(feature = "async-std")]
+#[cfg(any(feature = "backend-async-std", feature = "backend-smol"))]
pub mod async_std;
-#[cfg(feature = "tokio")]
+#[cfg(feature = "backend-tokio")]
pub mod tokio;
diff --git a/src/pty.rs b/src/pty.rs
index b017225..07d6b2c 100644
--- a/src/pty.rs
+++ b/src/pty.rs
@@ -4,9 +4,9 @@ use ::std::os::unix::io::IntoRawFd as _;
pub mod std;
-#[cfg(feature = "async-std")]
+#[cfg(any(feature = "backend-async-std", feature = "backend-smol"))]
pub mod async_io;
-#[cfg(feature = "tokio")]
+#[cfg(feature = "backend-tokio")]
pub mod tokio;
pub trait Pty {