cargo/crates/rustfix/Cargo.toml
Ed Page c6c1df4758 chore: Make N-2 the default MSRV
We likely don't want to release these packages every 6 months just for
an MSRV bump.
By moving the MSRV out of the package, `cargo bump-check` will ignore
the MSRV bump.

Inspired by #13266
2024-01-18 15:30:41 -06:00

35 lines
776 B
TOML

[package]
name = "rustfix"
version = "0.8.1"
authors = [
"Pascal Hertleif <killercup@gmail.com>",
"Oliver Schneider <oli-obk@users.noreply.github.com>",
]
rust-version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
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.4.0"
tempfile.workspace = true
tracing-subscriber.workspace = true
[lints]
workspace = true