Skip to content

Commit bc0cd89

Browse files
committed
Note that the crate is only no_std compatible when the serde feature is disabled.
This happens due to the fact that serde_arrays is not no_std compatible.
1 parent cebe537 commit bc0cd89

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
@@ -12,7 +12,7 @@ This crate lets you for example pre-compute prime numbers at compile time, store
1212
them in the binary, and use them later for related computations,
1313
or check whether a number is prime in a const function.
1414

15-
`no_std` compatible.
15+
`no_std` compatible when the `serde` feature is disabled.
1616

1717
## Example: generate primes at compile time and use them for related computations
1818

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.
6+
//! `no_std` compatible when the `serde` feature is disabled.
77
//!
88
//! # Example: generate primes at compile time and reuse it for related computations
99
//!

0 commit comments

Comments
 (0)