Skip to content

Commit 1d576a5

Browse files
committed
Bump MSRV due to tinyvec dep, replace unmantained action
1 parent c8011eb commit 1d576a5

File tree

5 files changed

+621
-624
lines changed

5 files changed

+621
-624
lines changed

.github/workflows/rust.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,7 @@ jobs:
6767
steps:
6868
- uses: actions/checkout@v2
6969
- name: Install msrv toolchain
70-
uses: actions-rs/toolchain@v1
71-
with:
72-
toolchain: 1.36
73-
override: true
70+
uses: dtolnay/[email protected]
7471
- name: Build
7572
run: cargo build --verbose --all-features
7673
regen:

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
rust:
3-
- 1.36.0
3+
- 1.40.0
44
- stable
55
- nightly
66
sudo: false

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Decomposition and Recomposition, as described in
2727
Unicode Standard Annex #15.
2828
"""
2929

30-
rust-version = "1.36"
30+
rust-version = "1.40"
3131

3232
edition = "2018"
3333

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Unicode character composition and decomposition utilities
77
as described in
88
[Unicode Standard Annex #15](http://www.unicode.org/reports/tr15/).
99

10-
This crate requires Rust 1.36+.
10+
This crate requires Rust 1.40+.
1111

1212
```rust
1313
extern crate unicode_normalization;

0 commit comments

Comments
 (0)