forked from obi1kenobi/cargo-semver-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (59 loc) · 1.89 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "cargo-semver-checks"
version = "0.20.0"
edition = "2021"
authors = ["Predrag Gruevski <obi1kenobi82@gmail.com>"]
license = "Apache-2.0 OR MIT"
description = "Scan your Rust crate for semver violations."
repository = "https://github.com/obi1kenobi/cargo-semver-checks"
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 = "0.4.0"
trustfall_rustdoc = { version = "0.11.0", features = ["v21", "v22", "v23", "v24"] }
clap = { version = "4.0.0", 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"
cargo_metadata = "0.15.0"
clap-cargo = { version = "0.10.0", features = ["cargo_metadata"] }
ignore = "0.4.18"
clap-verbosity-flag = "2.0.0"
log = "0.4.17"
git2 = { version = "0.16.0", default-features = false }
crates-index = { version = "0.19.6" }
human-panic = "1.0.3"
bugreport = "0.5.0"
itertools = "0.10.5"
cargo_toml = "0.15.2"
toml = "0.5.9"
directories = "4.0.1"
[dev-dependencies]
assert_cmd = "2.0"
lazy_static = "1.4.0"
[features]
default = ["vendored-openssl"]
vendored-openssl = ["crates-index/vendored-openssl"]
# In dev and test profiles, compile all dependencies with optimizations enabled,
# but still checking debug assertions and overflows.
#
# This produces a more than 10x speedup on tests, since the tests
# check dozens of test crates with dozens of trustfall queries.
[profile.dev.package."*"]
opt-level = 3
debug-assertions = true
overflow-checks = true
codegen-units = 16
[profile.test.package."*"]
opt-level = 3
debug-assertions = true
overflow-checks = true
codegen-units = 16