-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1 KB
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
[package]
name = "envcheck"
version = "0.1.0"
edition = "2021"
authors = ["envcheck contributors"]
description = "A lightweight CLI tool for validating developer environments"
license = "MIT"
repository = "https://github.com/dotandev/envcheck"
readme = "README.md"
homepage = "https://github.com/dotandev/envcheck"
documentation = "https://docs.rs/envcheck"
keywords = ["cli", "environment", "validation", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
semver = "1.0"
colored = "2.1"
which = "6.0"
anyhow = "1.0"
thiserror = "1.0"
regex = "1.10"
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"], default-features = false }
[dev-dependencies]
tempfile = "3.10"
assert_cmd = "2.0"
predicates = "3.1"
criterion = "0.5"
[[bench]]
name = "validation_bench"
harness = false
[[bin]]
name = "envcheck"
path = "src/main.rs"