-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
54 lines (50 loc) · 1.41 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
[package]
name = "cargo-override"
version = "0.0.5"
edition = "2021"
rust-version = "1.79"
license = "Apache-2.0 OR MIT"
description = """
Quickly override dependencies using the `[patch]` section of `Cargo.toml`s.
"""
repository = "https://github.com/eopb/cargo-override"
[features]
# Used to introduce TDD style tests, that are known to fail now, without breaking CI.
#
# These tests are marked with `#[cfg_attr(not(feature = "failing_tests"), should_panic)]`.
# Once the bugs are fixed, and these tests start passing, those attributes need to be
# removed.
#
# You can run these special tests now with `cargo test --features failing_tests`
failing_tests = []
[dependencies]
anyhow = "1.0.89"
camino = "1.1.9"
cargo = "0.82.0"
cargo_metadata = "0.18"
cargo-util-schemas = "0.5.0"
clap = { version = "4.5.18", features = ["derive"] }
fs-err = "2.11.0"
home = "0.5.9"
pathdiff = "0.2.1"
semver = "1.0.23"
serde = { version = "1.0.210", features = ["derive"] }
toml_edit = "0.22.22"
url = "2.5.2"
winnow = "0.6.20"
clap-cargo = "0.14.1"
[dev-dependencies]
assert_cmd = "2.0.16"
fake = "2.10.0"
googletest = "0.12.0"
hex = "0.4.3"
insta = { version = "1.40.0", features = ["filters", "toml"] }
serde_json = "1.0.128"
sha2 = "0.10.8"
strip-ansi-escapes = "0.2.0"
tempfile = "3.13.0"
test-case = "3.3.1"
# Faster snapshotting https://insta.rs/docs/quickstart/#optional-faster-runs
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3