-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (30 loc) · 1.03 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
[package]
name = "cargo-spdx"
description = "Generate an SPDX SBOM for a crate."
version = "0.1.0"
edition = "2021"
rust-version = "1.61"
license = "MIT OR Apache-2.0"
repository = "https://github.com/alilleybrinker/cargo-spdx"
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
keywords = ["cli", "supply-chain", "sbom", "spdx", "cargo"]
[dependencies]
anyhow = "1.0.57"
cargo_metadata = "0.15.0"
clap = { version = "3.1.18", features = ["derive"] }
clap-cargo = {version = "0.9.0", features =["cargo_metadata"]}
derive_builder = "0.11.2"
derive_more = "0.99.17"
dialoguer = "0.10.1"
env_logger = "0.9.0"
git2 = { version = "0.14.4", features = ["vendored-openssl", "vendored-libgit2"] }
hex = "0.4.3"
log = "0.4.17"
pathdiff = { version = "0.2.1", features = ["camino"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
serde_yaml = "0.8.24"
sha1 = "0.10.1"
sha2 = "0.10.2"
time = { version = "0.3.9", features = ["formatting", "macros", "serde"] }
url = {version = "2.2.2", features = ["serde"]}