forked from raftario/licensor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (46 loc) · 1.03 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
[package]
name = "permitter"
version = "3.0.0"
authors = ["Adam Perkowski <[email protected]>", "Raphaël Thériault <[email protected]>"]
license = "MIT"
description = "write licenses to stdout. a fork of licensor."
homepage = "https://github.com/adamperkowski/permitter"
repository = "https://github.com/adamperkowski/permitter.git"
readme = "README.md"
keywords = [
"license",
"cli",
"spdx",
"licensing",
]
categories = ["command-line-utilities"]
edition = "2018"
[workspace]
members = [
"permitter_codegen",
"permitter_common",
"permitter_fetch"
]
[dependencies]
calm_io = "0.1.1"
chrono = "0.4.9"
phf = "0.7.24"
structopt = "0.3.5"
textwrap = "0.11.0"
[dependencies.flate2]
version = "1.0.13"
default-features = false
features = ["rust_backend"]
[dev-dependencies]
assert_cmd = "0.11.1"
predicates = "1.0.2"
[dev-dependencies.cargo-husky]
version = "1.4.0"
default-features = false
features = [
"run-for-all",
"precommit-hook",
"run-cargo-test",
"run-cargo-clippy",
"run-cargo-fmt",
]