aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 27e5bf1bacbf911d2aad13381bffdb237c17fef0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "pty-process"
version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"

[dependencies]
libc = "*"
nix = "0.17"
thiserror = "1.0"

async-process = { version = "1.0", optional = true }
tokio = { version = "1.2", optional = true, features = ["process"] }

[features]
default = ["std"]

std = []