-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #557 from vks/xorshift-crate
Move `XorShiftRng` to its own crate
- Loading branch information
Showing
20 changed files
with
391 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.1.0] - 2018-07-16 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[package] | ||
name = "rand_xorshift" | ||
version = "0.1.0" # NB: When modifying, also modify html_root_url in lib.rs | ||
authors = ["The Rust Project Developers"] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/rust-lang-nursery/rand" | ||
documentation = "https://docs.rs/rand_isaac" | ||
homepage = "https://crates.io/crates/rand_isaac" | ||
description = """ | ||
Xorshift random number generator | ||
""" | ||
keywords = ["random", "rng", "xorshift"] | ||
categories = ["algorithms", "no-std"] | ||
|
||
[badges] | ||
travis-ci = { repository = "rust-lang-nursery/rand" } | ||
appveyor = { repository = "alexcrichton/rand" } | ||
|
||
[features] | ||
serde1 = ["serde", "serde_derive"] | ||
|
||
[dependencies] | ||
rand_core = { path = "../rand_core", version = "0.2", default-features=false } | ||
serde = { version = "1", optional = true } | ||
serde_derive = { version = "^1.0.38", optional = true } | ||
|
||
[dev-dependencies] | ||
# This is for testing serde, unfortunately we can't specify feature-gated dev | ||
# deps yet, see: https://github.com/rust-lang/cargo/issues/1596 | ||
bincode = "1" |
Oops, something went wrong.