Skip to content

Commit 07c084b

Browse files
committed
Move rand_pcg to the rand/rngs repository
1 parent 7e9754b commit 07c084b

File tree

18 files changed

+10
-1370
lines changed

18 files changed

+10
-1370
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ jobs:
1414
- uses: actions/checkout@v6
1515
- uses: rust-lang/crates-io-auth-action@v1
1616
id: auth
17-
- name: Publish rand_pcg
18-
working-directory: ./rand_pcg
19-
run: cargo publish
20-
env:
21-
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
22-
- name: Publish rand
23-
run: cargo publish
17+
- run: cargo publish
2418
env:
2519
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,7 @@ unbiased = []
6262
log = ["dep:log"]
6363

6464
[workspace]
65-
members = [
66-
"rand_pcg",
67-
]
68-
exclude = ["benches", "distr_test"]
65+
exclude = ["benches"]
6966

7067
[dependencies]
7168
rand_core = { version = "0.10.0", default-features = false }
@@ -75,7 +72,7 @@ chacha20 = { version = "0.10.0", default-features = false, features = ["rng"], o
7572
getrandom = { version = "0.4.0", optional = true }
7673

7774
[dev-dependencies]
78-
rand_pcg = { path = "rand_pcg", version = "0.10.0" }
75+
rand_pcg = "0.10"
7976
# Only to test serde
8077
postcard = {version = "1.1.3", default-features = false, features = ["alloc"]}
8178
rayon = "1.7"

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ simd_support = ["rand/simd_support"]
1212

1313
[dev-dependencies]
1414
rand = { path = ".." }
15-
rand_pcg = { path = "../rand_pcg" }
15+
rand_pcg = "0.10"
1616
chacha20 = { version = "0.10.0", default-features = false, features = ["rng"] }
1717
criterion = "0.5"
1818
criterion-cycles-per-byte = "0.6"

rand_pcg/CHANGELOG.md

Lines changed: 0 additions & 66 deletions
This file was deleted.

rand_pcg/COPYRIGHT

Lines changed: 0 additions & 12 deletions
This file was deleted.

rand_pcg/Cargo.toml

Lines changed: 0 additions & 32 deletions
This file was deleted.

rand_pcg/LICENSE-APACHE

Lines changed: 0 additions & 187 deletions
This file was deleted.

0 commit comments

Comments
 (0)