Skip to content

Commit

Permalink
update MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
magiclen committed Sep 9, 2023
1 parent 36fdab4 commit d8440fb
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 8 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/ci-version.yml
Expand Up @@ -18,7 +18,6 @@ jobs:
- macos-latest
- windows-latest
toolchain:
- 1.61
- stable
- nightly
features:
Expand All @@ -31,4 +30,25 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --release ${{ matrix.features }}
- run: cargo doc --release ${{ matrix.features }}
- run: cargo doc --release ${{ matrix.features }}

MSRV:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- 1.62
features:
-
name: Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --release --lib --bins ${{ matrix.features }}
24 changes: 22 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -34,7 +34,6 @@ jobs:
- macos-latest
- windows-latest
toolchain:
- 1.61
- stable
- nightly
features:
Expand All @@ -47,4 +46,25 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test ${{ matrix.features }}
- run: cargo doc ${{ matrix.features }}
- run: cargo doc ${{ matrix.features }}

MSRV:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- 1.62
features:
-
name: Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --lib --bins ${{ matrix.features }}
1 change: 1 addition & 0 deletions Cargo.toml
Expand Up @@ -3,6 +3,7 @@ lto = true
codegen-units = 1

[workspace]
resolver = "2"
members = [
"word-dictionary",
"words-transformer",
Expand Down
4 changes: 2 additions & 2 deletions word-dictionary/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "word-dictionary"
version = "0.1.1"
version = "0.1.2"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.62"
repository = "https://github.com/magiclen/words-transformer-rs"
homepage = "https://magiclen.org/words-transformer-rs"
keywords = ["translation", "dictionary"]
Expand Down
4 changes: 2 additions & 2 deletions words-transformer/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "words-transformer"
version = "0.1.0"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.62"
publish = false

[dependencies]
Expand All @@ -12,7 +12,7 @@ word-dictionary = { path = "../word-dictionary" }
iced = { version = "0.3", features = ["canvas"] }
lazy-static-include = "3.0.7"
once_cell = "1.5"
copypasta = "0.7.1"
copypasta = "0.8.2"

[build-dependencies]
slash-formatter = "3.1"
Expand Down

0 comments on commit d8440fb

Please sign in to comment.