Skip to content

Commit

Permalink
Correct feature information in docs and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Dec 11, 2024
1 parent b4fcc94 commit 464a20c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@

This file contains the changes to the crate since version 0.4.8.

## 0.9.10

- Correct feature information in docs and readme.

## 0.9.9

- Publish a version that doesn't have the `fast_test` feature to enable
downstream users to just run `cargo update` after versions 0.9.7 and 0.9.8 are yanked.
- The feature will be added again if the issue described in
[machine-prime/#4](https://github.com/JASory/machine-prime/issues/4) is fixed.

## 0.9.8
## 🗑️ ~~0.9.8~~ Yanked because the dependency has incompatible features

- Make links to crates in the docs on docs.rs link to the docs of those crates
on docs.rs.

## 0.9.7
## 🗑️ ~~0.9.7~~ Yanked because the dependency has incompatible features

- Added the `fast_test` feature that makes `is_prime` call out to the [`machine-prime`](https://crates.io/crates/machine_prime)
crate for a significant speedup.
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@ for the `Primes` struct.
`rkyv`: derives the `Serialize`, `Deserialize`, and `Archive` traits from
[`rkyv`](https://crates.io/crates/rkyv) for the `Primes` struct.

`fast_test`: speeds up primality testing significantly by using the
[`machine-prime`](https://crates.io/crates/machine-prime) crate.

<br>

### License
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@
//! `zerocopy`: derives the [`IntoBytes`](zerocopy::IntoBytes) trait from the [`zerocopy`] crate for the [`Primes`] struct.
//!
//! `rkyv`: derives the [`Serialize`](rkyv::Serialize), [`Deserialize`](rkyv::Deserialize), and [`Archive`](rkyv::Archive) traits from the [`rkyv`] crate for the [`Primes`] struct.
//!
//! `fast_test`: speeds up primality testing significantly by using the [`machine_prime`] crate.
#![forbid(unsafe_code)]
#![no_std]
Expand Down

0 comments on commit 464a20c

Please sign in to comment.