-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
28 lines (26 loc) · 926 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
[package]
name = "cargo-supply-chain"
version = "0.3.3"
description = "Gather author, contributor, publisher data on crates in your dependency graph"
repository = "https://github.com/rust-secure-code/cargo-supply-chain"
authors = ["Andreas Molzer <andreas.molzer@gmx.de>", "Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT OR Zlib"
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
exclude = ["deps_tests/"]
[dependencies]
cargo_metadata = "0.15.0"
csv = "1.1"
flate2 = "1"
humantime = "2"
humantime-serde = "1"
ureq = { version = "2.0.1", default-features=false, features = ["tls", "native-certs", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tar = "0.4.30"
indicatif = "0.17.0"
bpaf = { version = "0.9.1", features = ["derive", "dull-color"] }
anyhow = "1.0.28"
xdg = "2.5"
[dev-dependencies]
schemars = "0.8.3"