aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 731065d87235e51c825bd6c6fc1c8ea42587bf65 (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
[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.139"
nix = "0.26.2"

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

[dev-dependencies]
futures = "0.3.26"
regex = "1.7.1"
tokio = { version = "1.26.0", features = ["full"] }

[features]
default = []

async = ["tokio"]