-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 811 Bytes
/
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
[package]
name = "conventional-versioning"
version = "0.2.59"
edition = "2021"
description = "CLI tool that suggests the next version for you by analyzing the conventional commit history"
license-file = "./LICENSE"
repository = "https://github.com/jontze/conventional-versioning"
# Avoid publishing to crates.io
publish = ["jontze"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.28", features = ["derive", "env"] }
git2 = { version = "0.20.0", default-features = false}
miette = { version = "7.5.0", features = ["fancy"] }
node-semver = "2.2.0"
semver = "1.0.25"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_yaml = "0.9.34"
toml = "0.8.20"
[dev-dependencies]
mockall = "0.13.1"