summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/rustfix/Cargo.toml
blob: 7947f0268b560412094a2a38cb24079957da3337 (plain)
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
[package]
name = "rustfix"
version = "0.7.0"
authors = [
    "Pascal Hertleif <killercup@gmail.com>",
    "Oliver Schneider <oli-obk@users.noreply.github.com>",
]
rust-version = "1.70.0"  # MSRV:3
edition.workspace = true
license.workspace = true
homepage = "https://github.com/rust-lang/cargo"
repository = "https://github.com/rust-lang/cargo"
description = "Automatically apply the suggestions made by rustc"
documentation = "https://docs.rs/rustfix"
exclude = [
    "examples/*",
    "tests/*",
]

[dependencies]
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
tracing.workspace = true

[dev-dependencies]
anyhow.workspace = true
proptest.workspace = true
similar = "2.3.0"
tempfile.workspace = true
tracing-subscriber.workspace = true

[lints]
workspace = true