-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (23 loc) · 833 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
[package]
name = "semvercli"
version = "0.0.1"
authors = ["Kiril Zvezdarov <[email protected]>"]
edition = "2018"
description = "A thin command line interface over the semver crate"
homepage = "https://github.com/kzvezdarov/semvercli"
repository = "https://github.com/kzvezdarov/semvercli"
readme = "README.md"
keywords = ["version", "bump", "semver", "cli"]
categories = ["command-line-utilities", "development-tools::build-utils"]
license = "Apache-2.0"
[badges]
is-it-maintained-issue-resolution = { repository = "kzvezdarov/semvercli", service = "github" }
is-it-maintained-open-issues = { repository = "kzvezdarov/semvercli", service = "github" }
maintenance = { status = "actively-developed" }
[dependencies]
toml_edit = "0.1.3"
semver = "0.9.0"
clap = "2.33.0"
[dev-dependencies]
proptest = "0.9.4"
tempfile = "3.0.8"