forked from rust-cli/rexpect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 752 Bytes
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]
description = "Interact with unix processes/bash the same way as pexpect or Don libes expect does"
name = "rexpect"
version = "0.5.0"
authors = ["Philipp Keller <[email protected]>"]
edition = "2021"
repository = "https://github.com/rust-cli/rexpect"
homepage = "https://github.com/rust-cli/rexpect"
license = "MIT"
categories = ["os::unix-apis"]
keywords = ["pty", "automation", "testing", "expect", "pexpect"]
readme = "README.md"
rust-version = "1.60"
[dependencies]
comma = "1.0"
nix = "0.26"
regex = "1"
tempfile = "3"
thiserror = "1.0.34"
which = { version = "4.4", optional = true }
[badges]
maintenance = { status = "passively-maintained" }
[features]
default = []
which = ["dep:which"]