Skip to content

Commit

Permalink
Set MSRV to 1.67.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chifflier committed Feb 13, 2024
1 parent 81adaf3 commit eeaed24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
rust:
- stable
- 1.53.0
- 1.63.0
- nightly
steps:
- uses: actions/checkout@v2
Expand All @@ -21,6 +21,9 @@ jobs:
override: true
- name: Cargo update
run: cargo update
- name: Cargo update (fix for MSRV)
run: cargo update -p time --precise 0.3.20
if: matrix.rust == '1.63.0'
- uses: actions-rs/cargo@v1
with:
command: check
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![crates.io](https://img.shields.io/crates/v/asn1-rs.svg)](https://crates.io/crates/asn1-rs)
[![Download numbers](https://img.shields.io/crates/d/asn1-rs.svg)](https://crates.io/crates/asn1-rs)
[![Github CI](https://github.com/rusticata/asn1-rs/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/asn1-rs/actions)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.63.0+-lightgray.svg)](#rust-version-requirements)

# BER/DER Parsers/Encoders

Expand Down Expand Up @@ -44,9 +44,7 @@ of `nom::IResult`. This means that most `nom` combinators (`map`, `many0`, etc.)
combination to objects and methods from this crate. Reading the nom documentation may
help understanding how to write and combine parsers and use the output.

**Minimum Supported Rust Version**: 1.53.0

Note: if the `bits` feature is enabled, MSRV is 1.56.0 (due to `bitvec` 1.0)
**Minimum Supported Rust Version**: 1.63.0

# Recipes

Expand Down
6 changes: 2 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! [![crates.io](https://img.shields.io/crates/v/asn1-rs.svg)](https://crates.io/crates/asn1-rs)
//! [![Download numbers](https://img.shields.io/crates/d/asn1-rs.svg)](https://crates.io/crates/asn1-rs)
//! [![Github CI](https://github.com/rusticata/asn1-rs/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/asn1-rs/actions)
//! [![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
//! [![Minimum rustc version](https://img.shields.io/badge/rustc-1.63.0+-lightgray.svg)](#rust-version-requirements)
//!
//! # BER/DER Parsers/Encoders
//!
Expand Down Expand Up @@ -42,9 +42,7 @@
//! combination to objects and methods from this crate. Reading the nom documentation may
//! help understanding how to write and combine parsers and use the output.
//!
//! **Minimum Supported Rust Version**: 1.53.0
//!
//! Note: if the `bits` feature is enabled, MSRV is 1.56.0 (due to `bitvec` 1.0)
//! **Minimum Supported Rust Version**: 1.63.0
//!
//! # Recipes
//!
Expand Down

0 comments on commit eeaed24

Please sign in to comment.