Skip to content

Commit 2f0a7f7

Browse files
committed
Remove rand_xorshift crate (now housed in small-rngs repo)
1 parent 3bfffb5 commit 2f0a7f7

File tree

13 files changed

+3
-571
lines changed

13 files changed

+3
-571
lines changed

.travis.yml

-5
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ sudo: false
5555
# `cargo test --package rand_core --features=alloc` (requires nightly)
5656
# `cargo test --package rand_core --no-default-features`
5757
# `cargo test --package rand_isaac --features=serde1`
58-
# `cargo test --package rand_xorshift --features=serde1`
5958
# `cargo test --package rand_chacha`
6059
# `cargo test --package rand_hc128`
6160
#
@@ -73,7 +72,6 @@ matrix:
7372
- cargo test --package rand_core
7473
- cargo test --package rand_core --no-default-features
7574
- cargo test --package rand_isaac --features=serde1
76-
# - cargo test --package rand_xorshift --features=serde1
7775
- cargo test --package rand_chacha
7876
- cargo test --package rand_hc128
7977

@@ -90,7 +88,6 @@ matrix:
9088
- cargo test --package rand_core
9189
- cargo test --package rand_core --no-default-features
9290
- cargo test --package rand_isaac --features=serde1
93-
- cargo test --package rand_xorshift --features=serde1
9491
- cargo test --package rand_chacha
9592
- cargo test --package rand_hc128
9693
- cargo build --target=aarch64-apple-ios
@@ -106,7 +103,6 @@ matrix:
106103
- cargo test --package rand_core
107104
- cargo test --package rand_core --no-default-features
108105
- cargo test --package rand_isaac --features=serde1
109-
- cargo test --package rand_xorshift --features=serde1
110106
- cargo test --package rand_chacha
111107
- cargo test --package rand_hc128
112108

@@ -125,7 +121,6 @@ matrix:
125121
- cargo test --package rand_core
126122
- cargo test --package rand_core --no-default-features --features=alloc
127123
- cargo test --package rand_isaac --features=serde1
128-
# - cargo test --package rand_xorshift --features=serde1
129124
- cargo test --package rand_chacha
130125
- cargo test --package rand_hc128
131126
# remove cached documentation, otherwise files from previous PRs can get included

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ simd_support = ["packed_simd"] # enables SIMD support
2828
serde1 = ["rand_core/serde1", "rand_isaac/serde1", "rand_xorshift/serde1"] # enables serialization for PRNGs
2929

3030
[workspace]
31-
members = ["rand_core", "rand_isaac", "rand_chacha", "rand_hc128", "rand_xorshift"]
31+
members = ["rand_core", "rand_isaac", "rand_chacha", "rand_hc128"]
3232

3333
[dependencies]
3434
# Note: we can't use rand_core from a path at the same time as using rand_pcg
@@ -39,7 +39,7 @@ rand_pcg = { version = "0.1" }
3939
rand_isaac = { path = "rand_isaac", version = "0.1" }
4040
rand_chacha = { path = "rand_chacha", version = "0.1" }
4141
rand_hc128 = { path = "rand_hc128", version = "0.1" }
42-
rand_xorshift = { path = "rand_xorshift", version = "0.1" }
42+
rand_xorshift = { version = "0.1" }
4343
log = { version = "0.4", optional = true }
4444

4545
[dependencies.packed_simd]

appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,5 @@ test_script:
4040
- cargo test --package rand_core
4141
- cargo test --package rand_core --no-default-features --features=alloc
4242
- cargo test --package rand_isaac --features=serde1
43-
- cargo test --package rand_xorshift --features=serde1
4443
- cargo test --package rand_chacha
4544
- cargo test --package rand_hc128

rand_xorshift/CHANGELOG.md

-8
This file was deleted.

rand_xorshift/COPYRIGHT

-12
This file was deleted.

rand_xorshift/Cargo.toml

-31
This file was deleted.

rand_xorshift/LICENSE-APACHE

-201
This file was deleted.

rand_xorshift/LICENSE-MIT

-26
This file was deleted.

rand_xorshift/README.md

-44
This file was deleted.

0 commit comments

Comments
 (0)