Files
rust/clippy_test_deps/Cargo.toml
T
Samuel Tardieu 4f1044a5a6 Do not specialize for if_chain any longer
Now that `if let` chains have been introduced, the `if_chain` external
crate is no longer necessary. Dropping special support for it also
alleviates the need to keep the crate as a dependency in tests.
2025-07-28 17:26:38 +02:00

21 lines
467 B
TOML

[package]
name = "clippy_test_deps"
version = "0.1.0"
edition = "2021"
# Add dependencies here to make them available in ui tests.
[dependencies]
libc = "0.2"
regex = "1.5.5"
serde = { version = "1.0.145", features = ["derive"] }
quote = "1.0.25"
syn = { version = "2.0", features = ["full"] }
futures = "0.3"
parking_lot = "0.12"
tokio = { version = "1", features = ["io-util"] }
itertools = "0.12"
# Make sure we are not part of the rustc workspace.
[workspace]