We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc39531 + ecff328 commit 4d59aa3Copy full SHA for 4d59aa3
.github/workflows/rust.yml
@@ -46,6 +46,16 @@ jobs:
46
- name: Run tests (no_std)
47
run: cargo test --tests --no-default-features --verbose
48
49
+ msrv:
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: actions/checkout@v2
53
+ - uses: actions-rs/toolchain@v1
54
+ with:
55
+ toolchain: 1.53
56
+ override: true
57
+ - run: cargo +1.53 check
58
+
59
fmt:
60
runs-on: ubuntu-latest
61
steps:
Cargo.toml
@@ -8,6 +8,7 @@ license = "MIT/Apache-2.0"
8
repository = "https://github.com/gankra/thin-vec"
9
homepage = "https://github.com/gankra/thin-vec"
10
readme = "README.md"
11
+rust-version = "1.53"
12
13
[features]
14
unstable = []
0 commit comments