Skip to content

Commit

Permalink
Avoid duplicate dependencies of the syn crate
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Mar 27, 2023
1 parent 4379c8b commit 9e11edb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,13 @@ jobs:
steps:
- uses: actions/checkout@v2

# Avoid spurious reports of duplicated dependencies by using precise versions of some crates
# In particular: avoid syn 2.0 until all crates are updated
- name: Set up package versions
run: |
cargo update --package async-trait --precise 0.1.66
cargo update --package serde_derive --precise 1.0.156
- name: cargo deny aarch64-apple-darwin check
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 9e11edb

Please sign in to comment.