forked from zhiburt/expectrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 1.14 KB
/
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
30
31
32
33
34
35
36
37
[package]
name = "expectrl"
version = "0.5.2"
authors = ["Maxim Zhiburt <zhiburt@gmail.com>"]
edition = "2018"
description = "A tool for automating terminal applications in Unix like Don libes expect"
repository = "https://github.com/zhiburt/expectrl"
homepage = "https://github.com/zhiburt/expectrl"
documentation = "https://docs.rs/expectrl"
license = "MIT"
categories = ["development-tools::testing", "os::unix-apis", "os::windows-apis"]
keywords = ["expect", "pty", "testing", "terminal", "automation"]
readme = "README.md"
# It's necessary only for Windows, because of `Command::get_*` functions.
# Unix build can be done on older versions
rust-version = "1.57"
[features]
async = ["futures-lite", "futures-timer", "async-io", "blocking"]
[dependencies]
regex = "1.5.4"
futures-lite = { version = "1.12.0", optional = true }
futures-timer = { version = "3.0.2", optional = true }
[target.'cfg(windows)'.dependencies]
conpty = "0.3.0"
blocking = { version = "1.2.0", optional = true }
[target.'cfg(unix)'.dependencies]
ptyprocess = "0.3.0"
nix = "0.23.1"
async-io = { version = "1.6.0", optional = true }
[package.metadata.docs.rs]
all-features = false