aboutsummaryrefslogblamecommitdiffstats
path: root/Cargo.toml
blob: f6817118e70cfd5db543d95481ad43f33db7c0ff (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                    
                 
                                         
                
 





                                                       
                                                              
 
              
                
                                                                    
 
                                                                                    
 
                  
                  
                                                                                                   

                                                   
 
          
            
 
                 
[package]
name = "pty-process"
version = "0.4.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2021"

description = "spawn commands attached to a pty"
repository = "https://git.tozt.net/pty-process"
readme = "README.md"
keywords = ["pty", "spawn", "execute", "process"]
categories = ["asynchronous", "command-line-interface"]
license = "MIT"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]

[dependencies]
libc = "0.2.147"
rustix = { version = "0.38.7", features = ["pty", "process", "fs"] }

tokio = { version = "1.29.1", features = ["fs", "process", "net"], optional = true }

[dev-dependencies]
futures = "0.3.28"
nix = { version = "0.26.2", default-features = false, features = ["signal", "fs", "term", "poll"] }
regex = "1.9.3"
tokio = { version = "1.29.1", features = ["full"] }

[features]
default = []

async = ["tokio"]