forked from EmbarkStudios/cargo-about
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
91 lines (86 loc) · 2.31 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
83
84
85
86
87
88
89
90
91
[package]
name = "cargo-about"
version = "0.6.1"
description = "Cargo plugin for generating a listing of all of the crates and the the terms under which they are licensed"
authors = [
"Embark <opensource@embark-studios.com>",
"Jake Shadle <jake.shadle@embark-studios.com>",
]
edition = "2021"
rust-version = "1.70.0"
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"
[profile.release]
strip = "debuginfo"
[dependencies]
# Colorization
nu-ansi-term = "0.49"
# Error facilities
anyhow = "1.0"
# License detection
askalono = "0.4"
# API helpers for api.clearlydefined.io
cd = { version = "0.2", features = ["blocking", "rustls"] }
# Argument parsing
clap = { version = "4.0", features = ["derive"] }
# 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.15.1"
# Logging macros
log = "0.4"
# Better heap allocator over system one (usually)
mimalloc = "0.1"
# Better locking primitives
parking_lot = "0.12"
# 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.17"
# Oh gee what could it be
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# License expression parsing and evaluation
spdx = { version = "0.10", features = ["text"] }
# Log timestamps
time = "0.3"
# Configuration parsing
toml = "0.8"
# Manipulation of cargo manifests for diagnostic purposes
toml_edit = "0.21"
# Hashing
twox-hash = "1.6"
# Url parsing
url = "2.2"
[dev-dependencies]
# Filesystems - Filesystem fixtures and assertions for testing
assert_fs = "1.0.7"
# Easy command initialization and assertions
assert_cmd = "2.0"
# Composable first-order predicate functions
predicates = "3.0"