-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
46 lines (41 loc) · 1.15 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 = "unclog"
version = "0.7.3"
authors = ["Thane Thomson <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/informalsystems/unclog"
repository = "https://github.com/informalsystems/unclog"
readme = "README.md"
categories = ["development-tools"]
keywords = ["changelog", "markdown"]
description = """
unclog allows you to build your changelog from a collection of independent
files. This helps prevent annoying and unnecessary merge conflicts when
collaborating on shared codebases."""
[[bin]]
name = "unclog"
path = "src/bin/cli.rs"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["simplelog", "clap", "tempfile"]
[dependencies]
git2 = "0.19"
handlebars = "5.1"
log = "0.4"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
textwrap = "0.16"
thiserror = "1.0"
toml = "0.8"
url = "2.5"
simplelog = { version = "0.12", optional = true }
clap = { version = "4.5", features = ["derive", "env"], optional = true }
tempfile = { version = "3.10", optional = true }
chrono = "0.4.38"
comfy-table = "7.1.1"
[dev-dependencies]
env_logger = "0.11"
lazy_static = "1.4"