Skip to content

Commit

Permalink
fix transitive dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Jan 15, 2025
1 parent a146d26 commit 52b6247
Show file tree
Hide file tree
Showing 2 changed files with 2,227 additions and 2,122 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,11 @@ jobs:
- name: Setup Nightly Rust toolchain
uses: ./.github/actions/setup-builder
- name: Generate minimal versions lockfile
run: cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions
run: |
cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions
# Some dependencies don't correctly specify a minimal version for their dependencies and will fail to build.
# So we update these transitive dependencies here.
cargo update tap faststr metainfo linkedbytes
- name: Setup MSRV Rust toolchain
uses: ./.github/actions/setup-builder
with:
Expand Down
Loading

0 comments on commit 52b6247

Please sign in to comment.