Skip to content

Commit

Permalink
Merge pull request #673 from dhardy/master
Browse files Browse the repository at this point in the history
Fix rand_xoshiro dependencies
  • Loading branch information
dhardy authored Jan 4, 2019
2 parents 3001e91 + cf5e07f commit ec634c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ rand_isaac = { path = "rand_isaac", version = "0.1" }
rand_chacha = { path = "rand_chacha", version = "0.1" }
rand_hc = { path = "rand_hc", version = "0.1" }
rand_xorshift = { path = "rand_xorshift", version = "0.1" }
rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }
log = { version = "0.4", optional = true }

[dependencies.packed_simd]
Expand All @@ -69,6 +68,8 @@ winapi = { version = "0.3", features = ["minwindef", "ntsecapi", "profileapi", "
[dev-dependencies]
# This has a histogram implementation used for testing uniformity.
average = "0.9.2"
# Only for benches:
rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }

[build-dependencies]
autocfg = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion rand_xoshiro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ byteorder = { version = "1", default-features=false }
rand_core = { path = "../rand_core", version = "0.3", default-features=false }

[dev-dependencies]
rand = { path = "..", default-features=false } # needed for doctests
rand = { path = "..", version = "0.6", default-features=false } # needed for doctests

0 comments on commit ec634c3

Please sign in to comment.