forked from EmbarkStudios/cargo-about
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (79 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "cargo-about"
version = "0.4.2"
description = "Cargo plugin for generating a listing of all of the crates and the the terms under which they are licensed"
authors = [
"Embark <[email protected]>",
"Jake Shadle <[email protected]>",
]
edition = "2021"
rust-version = "1.56"
repository = "https://github.com/EmbarkStudios/cargo-about"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/cargo-about"
homepage = "https://github.com/EmbarkStudios/cargo-about"
categories = ["development-tools::cargo-plugins"]
keywords = ["cargo", "license", "spdx"]
exclude = ["media/"]
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "cargo-about"
path = "src/cargo-about/main.rs"
[dependencies]
# Colorization
ansi_term = "0.12"
# Error facilities
anyhow = "1.0"
# License detection
askalono = "0.4"
# TTY detection
atty = "0.2"
# API helpers for api.clearlydefined.io
cd = { version = "0.2", features = ["blocking", "rustls"] }
# Datetime
chrono = "0.4"
# Diagnostic reporting
codespan = "0.11"
codespan-reporting = "0.11"
# Logging helpers
fern = "0.6"
# Template engine for output
handlebars = { version = "4.1", features = ["dir_source"] }
# $HOME retrieval
home = "0.5"
# Directory walking
ignore = "0.4"
# Dependency graphing
krates = "0.9"
# Logging macros
log = "0.4"
# Better heap allocator over system one (usually)
mimalloc = "0.1"
# Better locking primitives
parking_lot = "0.11"
# brrrr
rayon = "1.5"
# HTTP requests
reqwest = { version = "0.11", default-features = false, features = [
"blocking",
"rustls-tls",
] }
# Checksum verification (already pulled in via rustls)
ring = "0.16"
# Oh gee what could it be
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# License expression parsing and evaluation
spdx = { version = "0.6", features = ["text"] }
# Command line parsing
structopt = "0.3"
# Configuration parsing
toml = "0.5"
# Manipulation of cargo manifests for diagnostic purposes
toml_edit = "0.6"
# Hashing
twox-hash = "1.6"
# Url parsing
url = "2.2"