-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 839 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 839 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "mk"
version = "0.7.1"
edition = "2021"
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.49", features = [
"derive",
"help",
"usage",
"error-context",
] }
clap_complete = "4.5.59"
colored = "3.0.0"
dialoguer = "0.12.0"
etcetera = "0.11.0"
ignore = "0.4.23"
regex = "1.12.1"
attohttpc = { version = "0.30.1", features = ["json", "tls-vendored"] }
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
toml = "0.9.8"
toml_edit = "0.25.0"
yaml-rust2 = "0.11.0"
indicatif = "0.18.0"
[dev-dependencies]
# Parametrized testing
rstest = "=0.26.1"
# CLI testing
assert_cmd = "=2.2.0"
predicates = "=3.1.4"
# Temporary directories for tests
tempfile = "=3.27.0"
# Test serialization
serial_test = "=3.4.0"
[profile.release]
strip = true
lto = true
codegen-units = 1