Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Raise required compiler to rust 1.60
Browse files Browse the repository at this point in the history
Required by reqwest 0.12.

    error: failed to select a version for the requirement `reqwest = "^0.12"`
    candidate versions found which didn't match: 0.11.23, 0.11.22, 0.11.21, ...
    location searched: crates.io index
    required by package `unsafe-libyaml-test-suite v0.0.0`
  • Loading branch information
dtolnay committed Mar 21, 2024
1 parent 9187632 commit 230e919
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
- run: cargo test

msrv:
name: Rust 1.56.0
name: Rust 1.60.0
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.56.0
- uses: dtolnay/rust-toolchain@1.60.0
- run: cargo check --lib

doc:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
keywords = ["yaml"]
license = "MIT"
repository = "https://github.com/dtolnay/unsafe-libyaml"
rust-version = "1.56"
rust-version = "1.60"

[workspace]
[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ of [c2rust].
unsafe-libyaml = "0.2"
```

*Compiler support: requires rustc 1.56+*
*Compiler support: requires rustc 1.60+*

## License

Expand Down

0 comments on commit 230e919

Please sign in to comment.