mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
4f1044a5a6
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.
21 lines
467 B
TOML
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]
|