mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
26 lines
669 B
TOML
26 lines
669 B
TOML
|
[package]
|
||
|
name = "clippy_test_deps"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
clap = { version = "4.1.4", features = ["derive"] }
|
||
|
clippy_utils = { path = "../clippy_utils" }
|
||
|
derive-new = "0.5"
|
||
|
if_chain = "1.0"
|
||
|
itertools = "0.10.1"
|
||
|
quote = "1.0"
|
||
|
serde = { version = "1.0.125", features = ["derive"] }
|
||
|
syn = { version = "2.0", features = ["full"] }
|
||
|
futures = "0.3"
|
||
|
parking_lot = "0.12"
|
||
|
tokio = { version = "1", features = ["io-util"] }
|
||
|
rustc-semver = "1.1"
|
||
|
regex = "1.5"
|
||
|
clippy_lints = { path = "../clippy_lints" }
|
||
|
|
||
|
[features]
|
||
|
internal = ["clippy_lints/internal"]
|