-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
82 lines (73 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "scrut"
version = "0.1.0"
edition = "2021"
autobins = false
description = "A simple and powerful test framework for CLI applications"
license-file = "LICENSE"
repository = "https://github.com/facebookincubator/scrut"
readme = "README.md"
categories = [
"command-line-utilities",
"development-tools::testing",
]
keywords = [
"testing",
"cli",
]
[features]
# volatile tests, that depend on timeouts or order in STDERR, STDOUT will
# be flaky and should not be executed in automation
volatile_tests = []
[lib]
name = "scrut"
path = "src/lib.rs"
[[bin]]
name = "scrut"
path = "src/bin/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.3", features = [
"color",
"default",
"derive",
"env",
"error-context",
"help",
"std",
"string",
"suggestions",
"unicode",
"usage",
"wrap_help",
] }
colored = "1.9"
derivative = "2.2"
derive_builder = "0.11"
dialoguer = "0.10"
dunce = "1.0"
globset = "0.4"
humantime = "2.1"
lazy_static = "1.4"
rand = "0.8"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
shell-escape = "0.1"
strip-ansi-escapes = "0.1"
subprocess = "0.2.7"
tempfile = "3.8"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode_categories = "0.1"
which = "4.2.4"
wildmatch = "2.1"
[build-dependencies]
vergen = { version = "7", features = ["git"] }
[dev-dependencies]
assert_cmd = "2.0"
insta = {version = "1.21.1", features = ["json"] }
predicates = "2.1"