Skip to content

Commit

Permalink
Bump MSRV to 1.56
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilles committed Apr 9, 2023
1 parent f27655d commit b4f0cf1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/rust.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: rust
name: ci

on:
pull_request: {}
push:
branches: [ master ]
pull_request:
branches: [ master ]

env:
CARGO_TERM_COLOR: always
branches:
- master
schedule:
- cron: '0 0 * * 0'

jobs:
lint:
Expand All @@ -25,7 +24,7 @@ jobs:
strategy:
matrix:
rust:
- 1.46.0
- 1.56.0
- stable
- beta
steps:
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ documentation = "https://docs.rs/crc"
description = "Rust implementation of CRC with support of various standards"
keywords = ["crc", "crc16", "crc32", "crc64", "hash"]
categories = ["algorithms", "no-std"]
edition = "2018"
edition = "2021"
rust-version = "1.56"

[dependencies]
crc-catalog = "2.1.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Rust implementation of CRC.

[![rust](https://github.com/mrhooray/crc-rs/actions/workflows/rust.yaml/badge.svg)](https://github.com/mrhooray/crc-rs/actions/workflows/rust.yaml)
[![ci](https://github.com/mrhooray/crc-rs/actions/workflows/ci.yaml/badge.svg)](https://github.com/mrhooray/crc-rs/actions/workflows/ci.yaml)
[![Crate](https://img.shields.io/crates/v/crc.svg)](https://crates.io/crates/crc)
[![Docs](https://docs.rs/crc/badge.svg)](https://docs.rs/crc)
[![License](https://img.shields.io/crates/l/crc.svg?maxAge=2592000)](https://github.com/mrhooray/crc-rs#license)
Expand Down Expand Up @@ -43,7 +43,7 @@ assert_eq!(digest.finalize(), 0xaee7);

### Minimum supported Rust version (MSRV)

This crate's MSRV is 1.46.
This crate's MSRV is 1.56.

At a minimum, the MSRV will be <= the oldest stable release in the last 12 months. MSRV may be bumped in minor version releases.

Expand Down

0 comments on commit b4f0cf1

Please sign in to comment.