forked from obi1kenobi/cargo-semver-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.13 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
[package]
name = "cargo-semver-checks"
version = "0.9.2"
edition = "2021"
authors = ["Predrag Gruevski <[email protected]>"]
license = "Apache-2.0"
description = "Scan your Rust crate for semver violations."
repository = "https://github.com/obi1kenobi/cargo-semver-check"
readme = "./README.md"
keywords = ["semver", "check", "crate", "cargo"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
trustfall_core = "0.0.4"
rustdoc-types = "0.14.0"
clap = { version = "3.2.8", features = ["derive", "cargo"] }
serde_json = "1.0.82"
anyhow = "1.0.58"
ron = "0.7.1"
serde = { version = "1.0.139", features = ["derive"] }
semver = "1.0.12"
handlebars = "4.3.1"
atty = "0.2.14"
termcolor = "1.1.3"
termcolor_output = "1.0.1"
toml_edit = "0.14.4"
cargo_metadata = "0.15.0"
clap-cargo = { version = "0.9.1", features = ["cargo_metadata"] }
ignore = "0.4.18"
clap-verbosity-flag = "1.0.1"
log = "0.4.17"
git2 = { version = "0.15.0", default-features = false }
crates-index = "0.18.9"
human-panic = "1.0.3"
bugreport = "0.5.0"