Move ISAAC generators to their own crate #551
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Part of #431
cargo doc --no-deps --all --all-features
seems to fail in my tests unless I remove the--all-features
flag. Not sure what's wrong here.I left the PRNG comparisons in the
prng
module doc for now. We may decide to move that underdoc/
later.I also left the benchmarks as-is; this allows them to be compared across crates. I'm not sure whether to keep
rand_isaac
a dev-dependency just for this; perhaps eventually we should move the benchmarks.For now the lib depends on
rand_isaac
anyway, just for the deprecation warnings (existing ones, and new ones for the names in theprng
module).