-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 913 Bytes
/
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
[package]
name = "gwv"
version = "0.3.2"
edition = "2021"
authors = ["[email protected]"]
description = "A validator for gradle/wrapper jar binaries, intended to be used in CI pipelines"
repository = "https://github.com/dotanuki-labs/gradle-wrapper-validator"
readme = "README.md"
license = "MIT"
publish = true
categories = ["command-line-utilities"]
keywords = ["supply-chain", "android", "gradle", "ci", "devops"]
[package.metadata]
msrv = "1.78.0"
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
human-panic = "2.0.0"
serde = { version = "1.0.200", features = ["derive"] }
walkdir = "2.5.0"
sha256 = "1.5.0"
reqwest = { version = "0.12.9", default-features = false, features = ["json", "blocking", "rustls-tls"] }
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
[[bin]]
name = "gwv"
[profile.release]
strip = true
lto = true
codegen-units = 1