-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathCargo.toml
65 lines (60 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "cargo-deny"
description = "Cargo plugin to help you manage large dependency graphs"
repository = "https://github.com/EmbarkStudios/cargo-deny"
version = "0.7.2"
authors = ["Embark <opensource@embark-studios.com>", "Jake Shadle <jake.shadle@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/cargo-deny"
homepage = "https://github.com/EmbarkStudios/cargo-deny"
categories = ["development-tools::cargo-plugins"]
keywords = ["cargo", "license", "spdx", "ci", "advisories"]
exclude = [
"examples/",
".github/",
]
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "cargo-deny"
path = "src/cargo-deny/main.rs"
[features]
default = ["vendored-openssl"]
vendored-openssl = ["rustsec/vendored-openssl"]
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0"
askalono = "0.4"
atty = "0.2"
bitvec = { version = "0.17", features = ["alloc"] }
chrono = "0.4"
clap = "2.33"
codespan = { version = "0.9", features = ["reporting"] }
codespan-reporting = "0.9"
crossbeam = "0.7.3"
fern = "0.6.0"
home = "0.5.3"
krates = { version = "0.4.0", features = ["targets"] }
log = "0.4.8"
rayon = "1.3.0"
regex = { version = "1.3", default-features = true }
semver = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smallvec = "1.4"
spdx = "0.3"
structopt = "0.3"
toml = "0.5"
twox-hash = { version = "1.5", default-features = false }
url = "2.1"
rustsec = "0.21"
[dev-dependencies]
# We use this for pretty printing errors
difference = "2.0.0"
# Avoid loading license check many times
lazy_static = "1.4.0"
# We use this for creating fake crate directories for
# crawling license files on disk
tempfile = "3.1.0"