-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 975 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
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
authors = ["Alberto Colombo <[email protected]"]
edition = "2018"
name = "what-bump"
version = "0.0.0-UNRELEASED"
license-file = "LICENSE"
description = "Detect required version bump based on conventional commit messages"
repository = "https://github.com/sky-uk/what-bump"
readme = "README.md"
keywords = ["semver", "conventional-commit"]
categories = ["command-line-utilities", "development-tools::build-utils"]
exclude = ["scripts/*", ".circleci/*", ".gitignore", "Dockerfile"]
[badges]
circle-ci = { repository = "sky-uk/what-bump", branch = "develop" }
maintenance = { status = "actively-developed" }
[dependencies]
semver = "0.9"
structopt = "0.3.9"
simple-error = "0.2"
fallible-iterator = "0.2.0"
chrono = "0.4"
log = "0.4.8"
stderrlog = "0.4.3"
lazy_static = "1.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.git2]
version = "0.18"
default-features = false
[dependencies.tera]
version = "1"
default-features = false