-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1.01 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
41
42
# Copyright 2025 Dotanuki Labs
# SPDX-License-Identifier: MIT
[package]
name = "gwv"
version = "0.5.0"
edition = "2024"
authors = ["dotanuki.labs@gmail.com"]
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.89.0"
[dependencies]
anyhow = "=1.0.102"
clap = { version = "=4.5.60", features = ["derive"] }
human-panic = "=2.0.6"
serde = { version = "=1.0.228", features = ["derive"] }
walkdir = "=2.5.0"
sha256 = "=1.6.0"
reqwest = { version = "=0.13.2", features = ["json"] }
reqwest-middleware = "=0.5.1"
reqwest-retry = "=0.9.1"
tokio = { version = "=1.49.0", features = ["full"] }
[dev-dependencies]
assert_cmd = "=2.1.2"
predicates = "=3.1.4"
[[bin]]
name = "gwv"
[profile.release]
strip = true
lto = true
codegen-units = 1