-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathCargo.toml
66 lines (60 loc) · 1.68 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.3.0-beta"
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"]
exclude = [
# Exclude the zstd cache for now, as we are using the vanilla
# askalono with support for gzip
"spdx_cache.bin.zstd",
"examples/",
".github/",
]
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "cargo-deny"
path = "src/cargo-deny/main.rs"
[dependencies]
ansi_term = "0.11.0"
atty = "0.2.13"
cargo_metadata = "0.8.2"
chrono = "0.4.9"
clap = "2.33.0"
codespan = "0.4.1"
codespan-reporting = "0.4.1"
crossbeam = "0.7.2"
erased-serde = "0.3.9"
failure = "0.1.5"
fern = "0.5.8"
log = "0.4.8"
parking_lot = "0.9.0"
petgraph = "0.4.13"
rayon = "1.2.0"
regex = { version = "1.3.1", default-features = true }
semver = "0.9.0"
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.40"
smallvec = "0.6.10"
spdx = "0.2.0"
structopt = "0.3.2"
toml = "0.5.3"
twox-hash = { version = "1.5.0", default-features = false }
[dependencies.askalono]
version = "0.3.0"
[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"