Skip to content

Commit dac57ce

Browse files
authored
Add MSRV version 1.45.2 and test build in CI (#35)
1 parent a563a5f commit dac57ce

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,23 @@ jobs:
1414
name: Build
1515

1616
runs-on: ubuntu-latest
17+
strategy:
18+
matrix:
19+
rust: [
20+
1.45.2,
21+
stable
22+
]
1723

1824
steps:
1925
- uses: actions/checkout@v2.4.0
26+
27+
- name: Install Rust ${{ matrix.rust }}
28+
uses: actions-rs/toolchain@v1.0.7
29+
with:
30+
toolchain: ${{ matrix.rust }}
31+
override: true
32+
profile: minimal
33+
2034
- name: Build
2135
run: cargo build --verbose
2236

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
33
[![Crates.io](https://img.shields.io/crates/v/base58m.svg)](https://crates.io/crates/base58m)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5+
[![MSRV](https://img.shields.io/badge/MSRV-1.45.2-blue)](https://blog.rust-lang.org/2020/08/03/Rust-1.45.2.html)
56

67
`base58m`, a Rust Monero Base58 `base64`-like Binary
78
===

0 commit comments

Comments
 (0)