Skip to content

Commit 76debd5

Browse files
committed
Correct MSRV info
1 parent da99449 commit 76debd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Generate and work with prime numbers in const contexts.
1010
This crate lets you for example pre-compute prime numbers at compile time, store them in the binary, and use them later for related computations,
1111
or check whether a number is prime in a const function.
1212

13-
`#![no_std]` compatible, and currently supports Rust versions 1.79.0 or newer, but can be made to support version 1.67.1 by disabling the `const_assert` feature.
13+
`#![no_std]` compatible, and currently supports Rust versions 1.67.1 or newer.
1414

1515
## Example: generate primes at compile time
1616

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This crate lets you for example pre-compute prime numbers at compile time, store them in the binary, and use them later for related computations,
44
//! or check whether a number is prime in a const function.
55
//!
6-
//! `#![no_std]` compatible, and currently supports Rust versions 1.79.0 or newer, but can be made to support version 1.67.1 by disabling the `const_assert` feature.
6+
//! `#![no_std]` compatible, and currently supports Rust versions 1.67.1 or newer.
77
//!
88
//! # Example: generate primes at compile time
99
//!

0 commit comments

Comments
 (0)