From f3e8046eff473aa9bf940b7fbd156cf3dfbfa352 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Feb 2021 00:17:01 -0500 Subject: also create separate pty structs per backend for now, they are identical, but i will change them to be specialized next --- src/command/tokio.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/command/tokio.rs') diff --git a/src/command/tokio.rs b/src/command/tokio.rs index 60dfb56..67baf74 100644 --- a/src/command/tokio.rs +++ b/src/command/tokio.rs @@ -2,6 +2,7 @@ use std::os::unix::io::FromRawFd as _; impl super::CommandImpl for tokio::process::Command { type Child = tokio::process::Child; + type Pty = crate::pty::tokio::Pty; fn std_fds( &mut self, -- cgit v1.2.3-54-g00ecf