24 lines
596 B
TOML
24 lines
596 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]
|
|
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"] }
|
|
regex = "1.5"
|
|
clippy_lints = { path = "../clippy_lints" }
|
|
|
|
[features]
|
|
internal = ["clippy_lints/internal"]
|