aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
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/lib.rs
parent0db59c294fafb44c967f4210630202a41e34cff4 (diff)
downloadpty-process-6b5bf76f565be7727d3bc624589e6b728e93106b.tar.gz
pty-process-6b5bf76f565be7727d3bc624589e6b728e93106b.zip
rename features
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 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;