forked from gitext-rs/git-dive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (58 loc) · 2.05 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
[package]
name = "git-dive"
description = "Dive into a file's history to find root cause"
version = "0.0.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/gitext-rs/git-dive"
documentation = "https://github.com/gitext-rs/git-dive"
readme = "README.md"
categories = ["command-line-interface", "development-tools"]
keywords = ["git", "cli"]
edition = "2021"
rust-version = "1.64.0" # MSRV
include = [
"src/**/*",
"assets/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/gitext-rs/git-dive/compare/{{tag_name}}...HEAD", exactly=1},
]
[dependencies]
git2 = { version = "0.15.0", default-features = false, features = ["vendored-libgit2"] }
clap = { version = "4.1.8", features = ["derive", "wrap_help"] }
clap-verbosity-flag = "2.0.0"
log = "0.4.17"
env_logger = { version = "0.10.0", default-features = false, features = ["color"] }
concolor = "0.1.1"
concolor-clap = { version = "0.1.0", features = ["api"] }
proc-exit = "2.0.1"
human-panic = "1.1.2"
anyhow = "1.0.68"
syntect = { version = "5.0.0", default-features = false, features = ["parsing", "regex-fancy"] }
terminal_size = "0.2.3"
textwrap = "0.16.0"
anstyle = "0.3.1"
anstyle-stream = "0.2.2"
is-terminal = "0.4.4"
content_inspector = "0.2.4"
encoding = "0.2.33"
git-config-env = "0.1.4"
shlex = "1.1.0"
anstyle-syntect = "0.2.0"
bincode = "1.3.3"
serde = { version = "1.0.152", features = ["derive"] }
flate2 = "1.0.25"
once_cell = "1.17.0"
bugreport = "0.5.0"
[dev-dependencies]
snapbox = { version = "0.4.9", features = ["path"] }
term-transcript = "0.2.0"