-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
29 lines (23 loc) · 847 Bytes
/
Cargo.toml
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.5.1"
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]
rustix = { version = "0.38.44", features = ["pty", "process", "fs", "termios"] }
tokio = { version = "1.43.0", features = ["fs", "process", "net"], optional = true }
[dev-dependencies]
futures = "0.3.31"
nix = { version = "0.29.0", default-features = false, features = ["signal", "fs", "term", "poll"] }
regex = "1.11.1"
tokio = { version = "1.43.0", features = ["full"] }
[features]
default = []
async = ["tokio"]