aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 9f9c202b39c6a5d45cedab8e0e548222dc5cf8cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "pty-process"
version = "0.2.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.119"
nix = "0.23.1"

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

[dev-dependencies]
futures = "0.3.21"
regex = "1.5.4"
term_size = "0.3.2"
tokio = { version = "1.17.0", features = ["full"] }

[features]
default = []

async = ["tokio"]

[patch.crates-io]
nix = { path = "../src/nix" }