-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (47 loc) · 1.2 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
[package]
name = "parity-prdoc"
description = "prdoc is a tool for structured pull request annotation, useful for rich changelog generation"
version = "0.0.0-updated-from-ci"
authors = ["chevdor <chevdor@gmail.com>", "Wilfried Kopp <wilfried@parity.io>", "Yuri Volkov <0@mcornholio.ru>"]
edition = "2021"
homepage = "https://github.com/paritytech/prdoc"
keywords = ["cli", "documentation", "parity"]
license = "MIT"
repository = "https://github.com/paritytech/prdoc"
[lib]
name = "prdoclib"
path = "src/lib.rs"
[[bin]]
name = "prdoc"
[profile.production]
inherits = "release"
lto = true
panic = "abort"
opt-level = "z"
codegen-units = 1
[dependencies]
log = "0.4"
regex = "1.10"
exitcode = "1.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = { version = "0.9", optional = false }
serde_json = { version = "1.0", optional = false }
valico = { version = "4.0", default-features = false, features = [] }
toml = "0.8.19"
assert_cmd = "2.0"
color-eyre = "0.6"
env_logger = "0.11"
clap = { version = "4", features = [
"derive",
"env",
"unicode",
"cargo",
"color",
"help",
"usage",
"error-context",
"suggestions",
] }
[dev-dependencies]
assert_cmd = "2.0"