]> git.proxmox.com Git - rustc.git/blob - src/tools/cargo/crates/rustfix/Cargo.toml
New upstream version 1.76.0+dfsg1
[rustc.git] / src / tools / cargo / crates / rustfix / Cargo.toml
1 [package]
2 name = "rustfix"
3 version = "0.7.0"
4 authors = [
5 "Pascal Hertleif <killercup@gmail.com>",
6 "Oliver Schneider <oli-obk@users.noreply.github.com>",
7 ]
8 rust-version = "1.70.0" # MSRV:3
9 edition.workspace = true
10 license.workspace = true
11 homepage = "https://github.com/rust-lang/cargo"
12 repository = "https://github.com/rust-lang/cargo"
13 description = "Automatically apply the suggestions made by rustc"
14 documentation = "https://docs.rs/rustfix"
15 exclude = [
16 "examples/*",
17 "tests/*",
18 ]
19
20 [dependencies]
21 serde = { workspace = true, features = ["derive"] }
22 serde_json.workspace = true
23 thiserror.workspace = true
24 tracing.workspace = true
25
26 [dev-dependencies]
27 anyhow.workspace = true
28 proptest.workspace = true
29 similar = "2.3.0"
30 tempfile.workspace = true
31 tracing-subscriber.workspace = true
32
33 [lints]
34 workspace = true