Skip to content

Commit

Permalink
meta: update MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Feb 5, 2024
1 parent 0d14e46 commit 1a7bd9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
rust: [1.36.0, stable, beta, nightly]
rust: [1.47.0, stable, beta, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Unpin dependencies except on MSRV
if: matrix.rust != '1.36.0'
if: matrix.rust != '1.47.0'
run: cargo update
- run: cargo build --all-targets
- run: cargo test
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 @@ documentation = "https://docs.rs/unicode-bidi/"
keywords = ["rtl", "unicode", "text", "layout", "bidi"]
readme="README.md"
edition = "2018"
rust-version = "1.36.0"
rust-version = "1.47.0"
categories = [
"no-std",
"encoding",
Expand Down

0 comments on commit 1a7bd9c

Please sign in to comment.