-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 1.01 KB
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
[package]
name = "git-versioner"
version = "0.1.0"
authors = ["Felix Kröner <felix.kroener@gmx.de>"]
edition = "2024"
readme = "README.md"
license = "MIT"
description = "A tool to manage versions of git repositories using conventional commits and semantic versioning"
repository = "https://github.com/Crown0815/git-versioner"
keywords = ["git", "versioning", "semver", "conventional-commits"]
categories = ["development-tools", "command-line-utilities"]
[dependencies]
git2 = { version = "0.20.2", default-features = false, features = ["vendored-libgit2"] }
semver = "1.0.20"
clap = { version = "4.4.11", features = ["derive"] }
regex = "1.10.2"
anyhow = "1.0.75"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
toml = "0.9.3"
serde_yaml = "0.9.34"
chrono = "0.4.41"
stringcase = "0.4.0"
conventional_commit_parser = "0.9.4"
inflection-rs = "0.2.2"
[dev-dependencies]
tempfile = "3.8.1"
rstest = "0.26.1"
rstest_reuse = "0.7.0"
insta = { version = "1.43.1", features = ["filters"] }
insta-cmd = "0.6.0"