diff options
| author | Philipp Hansch <dev@phansch.net> | 2020-05-26 16:51:04 +0200 |
|---|---|---|
| committer | Philipp Hansch <dev@phansch.net> | 2020-05-26 16:52:02 +0200 |
| commit | fd86b3150e21df8eb6fee2f0c8b69f323146ffad (patch) | |
| tree | 704a40c1a8a826141838dbd80c3c8c4d3dcdc6ce | |
| parent | cdff59e156a85d86f7abb9834e42a18fe1ee257e (diff) | |
| download | rust-fd86b3150e21df8eb6fee2f0c8b69f323146ffad.tar.gz rust-fd86b3150e21df8eb6fee2f0c8b69f323146ffad.zip | |
Be less specific about quote and syn versions
| -rw-r--r-- | clippy_lints/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 7514608bc7e..76baf27fb2d 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -32,8 +32,8 @@ semver = "0.9.0" # NOTE: cargo requires serde feat in its url dep # see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864> url = { version = "2.1.0", features = ["serde"] } -quote = "1.0.2" -syn = { version = "1.0.11", features = ["full"] } +quote = "1" +syn = { version = "1", features = ["full"] } [features] deny-warnings = [] |
