-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1 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
[package]
name = "sbom-ghr"
version = "0.1.0-SNAPSHOT"
edition = "2021"
description = "SBOM generator for github release"
license = "MIT"
authors = ["kazuhiko kikuchi <[email protected]>"]
documentation = "https://docs.rs/sbom-ghr"
repository = "https://github.com/kazuk/sbom-ghr"
[package.metadata.rpm]
package = "sbom-ghr"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
sbom-ghr = { path = "/usr/bin/./src/bin/sbom-ghr" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.57"
ar = "0.9.0"
base16ct = {version="0.1.1", features=["alloc"]}
clap = { version="3.1.18", features=["derive","env"]}
digest = "0.10.3"
flate2 = "1.0.24"
git2 = "0.14.4"
octocrab = "0.16.0"
reqwest = "0.11.10"
sha-1 = "0.10.0"
spdx-rs = "0.5.0"
tar = "0.4.38"
tempfile = "3.3.0"
thiserror = "1.0.31"
tokio = { version="1.19.2", features=["full"] }
url = "2.2.2"
zip = "0.6.2"
[[bin]]
name="sbom-ghr"
test = false
bench=false