-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (42 loc) · 1.24 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
[package]
name = "cargo-changelog"
version = "0.2.0"
edition = "2021"
authors = [ "Matthias Beyer <[email protected]>" ]
description = "Changelog management tool"
homepage = "https://github.com/matthiasbeyer/cargo-changelog"
repository = "https://github.com/matthiasbeyer/cargo-changelog"
license = "GPL-2.0"
readme = "./README.md"
keywords = [ "cargo", "changelog", "cli", "utility", "tool" ]
categories = [ "command-line-utilities", "development-tools", "development-tools::cargo-plugins" ]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
cargo_metadata = "0.18.1"
clap = { version = "4", features = [ "cargo", "derive", "wrap_help" ] }
clap_complete = "4.5.7"
comma = "1.0.0"
dialoguer = "0.11.0"
env_logger = "0.11.5"
getset = "0.1.2"
git2 = "0.19.0"
handlebars = "4.3.6"
is-terminal = "0.4.13"
itertools = "0.12.1"
log = "0.4.21"
miette = { version = "7.2.0", features = ["fancy"] }
semver = "1.0.23"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
thiserror = "1.0.38"
time = { version = "0.3.20", features = [ "formatting", "macros" ] }
toml = "0.8.19"
typed-builder = "0.20.0"
walkdir = "2.5.0"
yansi = "0.5.1"
[dev-dependencies]
assert_cmd = "2.0.14"
indoc = "2.0.0"
predicates = "3.1.2"
tempfile = "3.8.0"