-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 939 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
[package]
name = "rust-crate-diffs"
version = "0.1.0"
authors = ["Rodney Johnson <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/rodneylab/rust-crate-diffs"
# config 0.15.4 raises MSRV to 1.75
rust-version = "1.75"
description = "Check Cargo.toml dependency changes against git repo head"
# Faster snapshot runs
# See: https://docs.rs/insta/latest/insta/#optional-faster-runs
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[dependencies]
ahash = "0.8.11"
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
clap-verbosity-flag = "3.0.2"
config = "0.15.4"
env_logger = "0.11.6"
git2 = "0.20.0"
log = "0.4.22"
nom = "7.1.3"
semver = "1.0.24"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.19"
[dev-dependencies]
assert_fs = "1.1.2"
insta = { version = "1.42.0", features = ["glob", "json"] }
trycmd = "0.15.8"