forked from rust-lang/rust-semverver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1 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
[package]
name = "semverver"
description = "Automatic verification of SemVer adherence in Rust library crates"
repository = "https://github.com/rust-lang/rust-semverver"
readme = "README.md"
keywords = ["semver", "plugin"]
categories = ["development-tools", "development-tools::cargo-plugins"]
version = "0.1.49"
authors = ["Inokentiy Babushkin <[email protected]>"]
license-file = "LICENSE"
edition = "2018"
exclude = ["/ci/*", "/.github/*", "/doc"]
[dependencies]
cargo = "0.62"
crates-io = "0.34" # Keep in sync with version pulled by Cargo
curl = "0.4.43"
env_logger = "0.9"
anyhow = "1.0.57"
log = "0.4"
semver = "1.0" # Keep in sync with version pulled by Cargo
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
quote = "1.0.10"
proc-macro2 = "1.0.32"
[dev-dependencies]
quickcheck = { version = "1.0", default-features = false }
[package.metadata.rust-analyzer]
# This crate uses `#![feature(rustc_private)]`
# cf. https://github.com/rust-analyzer/rust-analyzer/pull/7891
rustc_private = true