forked from gitext-rs/git-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (55 loc) · 1.75 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
[workspace]
members = [
"crates/git-fixture",
]
[package]
name = "git-stack"
description = "Stacked branch management for Git"
version = "0.5.5"
license = "MIT OR Apache-2.0"
repository = "https://github.com/epage/git-stack.git"
documentation = "https://github.com/epage/git-stack.git"
readme = "README.md"
categories = ["command-line-interface", "development-tools"]
keywords = ["git", "cli"]
edition = "2018"
include = [
"src/**/*",
"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/epage/git-stack/compare/{{tag_name}}...HEAD", exactly=1},
]
[dependencies]
git2 = { version = "0.13", default-features = false, features = ["vendored-libgit2"] }
git-config-env = "0.1"
log = "0.4"
clap = "3.1"
clap-verbosity-flag = "0.4"
proc-exit = "1"
eyre = "0.6"
human-panic = "1"
yansi = "0.5.0"
concolor = "0.0.8"
concolor-clap = { version = "0.0.9", features = ["api_unstable"] }
termtree = "0.2.4"
env_logger = { version = "0.9", default-features = false, features = ["termcolor"] }
atty = "0.2"
humantime = "2"
itertools = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ignore = "0.4"
bstr = "0.2"
maplit = "1"
[dev-dependencies]
git-fixture = { version = "^0.2", path = "crates/git-fixture" }
assert_fs = "1"