Skip to content

Commit

Permalink
Correct MSRV, we actually support earler verions!
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed May 17, 2024
1 parent 07817e4 commit 44376cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
A crate for generating and working with prime numbers in const contexts.
This lets you for example pre-compute prime numbers at compile time and store them in the binary.

`#![no_std]` compatible, and currently supports Rust versions 1.68.2 and newer.
`#![no_std]` compatible, and currently supports Rust versions 1.67.1 and newer.

## Examples

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! A crate for generating and working with prime numbers in const contexts.
//! This lets you for example pre-compute prime numbers at compile time and store them in the binary.
//!
//! `#![no_std]` compatible, and currently supports Rust versions 1.68.2 or newer.
//! `#![no_std]` compatible, and currently supports Rust versions 1.67.1 or newer.
//!
//! # Examples
//!
Expand Down

0 comments on commit 44376cd

Please sign in to comment.