Skip to content

Commit

Permalink
ci: fix msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 4, 2024
1 parent 6b3e2c3 commit 9c63843
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ test toolchain="":
# Downgrade dev-dependencies necessary to run MSRV checks/tests.
[private]
downgrade-msrv:
cargo {{ msrv_rustup }} update -p=serde_json --precise="1.0.120" # transitive memchr in 1.0.121 not
cargo {{ msrv_rustup }} update -p=syn --precise="2.0.56" # TODO: why
cargo update -p=serde_json --precise="1.0.120" # transitive memchr in 1.0.121 not
cargo update -p=syn --precise="2.0.56" # TODO: why

# Run workspace test suite using MSRV.
test-msrv: downgrade-msrv (test msrv_rustup)
Expand Down

0 comments on commit 9c63843

Please sign in to comment.