We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e77b292 commit 82d7136Copy full SHA for 82d7136
.github/workflows/rust.yml
@@ -46,3 +46,12 @@ jobs:
46
run: rm tests/emoji-test.txt && cd scripts && python3 unicode.py
47
- name: Diff
48
run: git update-index --refresh && git diff-index --quiet HEAD --
49
+
50
+ msrv:
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - uses: actions/checkout@v4
54
+ - uses: dtolnay/rust-toolchain@master
55
+ with:
56
+ toolchain: 1.66.0
57
+ - run: cargo check --lib --features core,std
Cargo.toml
@@ -23,6 +23,7 @@ Determine displayed width of `char` and `str` types
23
according to Unicode Standard Annex #11 rules.
24
"""
25
edition = "2021"
26
+rust-version = "1.66"
27
28
exclude = ["/.github/*"]
29
0 commit comments