Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ jobs:
- uses: actions/checkout@v6
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- name: Publish rand_pcg
working-directory: ./rand_pcg
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
- name: Publish rand
run: cargo publish
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
6 changes: 0 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
- name: rand
run: cargo doc --all-features --no-deps
- name: rand_pcg
run: cargo doc --all-features --package rand_pcg --no-deps

test:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -121,8 +119,6 @@ jobs:
- name: Test rand (all stable features)
run: |
cargo test --target ${{ matrix.target }} --features=serde,log
- name: Test rand_pcg
run: cargo test --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --features=serde

test-cross:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -153,7 +149,6 @@ jobs:
# all stable features:
cross test --no-fail-fast --target ${{ matrix.target }} --features=serde,log
cross test --no-fail-fast --target ${{ matrix.target }} --examples
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --features=serde

test-miri:
runs-on: ubuntu-latest
Expand All @@ -168,7 +163,6 @@ jobs:
run: |
cargo miri test --no-default-features --lib --tests
cargo miri test --features=log
cargo miri test --manifest-path rand_pcg/Cargo.toml --features=serde

test-no-std:
runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ unbiased = []
log = ["dep:log"]

[workspace]
members = [
"rand_pcg",
]
exclude = ["benches", "distr_test"]
exclude = ["benches"]

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

[dev-dependencies]
rand_pcg = { path = "rand_pcg", version = "0.10.0" }
rand_pcg = "0.10"
# Only to test serde
postcard = {version = "1.1.3", default-features = false, features = ["alloc"]}
rayon = "1.7"
Expand Down
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ simd_support = ["rand/simd_support"]

[dev-dependencies]
rand = { path = ".." }
rand_pcg = { path = "../rand_pcg" }
rand_pcg = "0.10"
chacha20 = { version = "0.10.0", default-features = false, features = ["rng"] }
criterion = "0.5"
criterion-cycles-per-byte = "0.6"
Expand Down
66 changes: 0 additions & 66 deletions rand_pcg/CHANGELOG.md

This file was deleted.

12 changes: 0 additions & 12 deletions rand_pcg/COPYRIGHT

This file was deleted.

32 changes: 0 additions & 32 deletions rand_pcg/Cargo.toml

This file was deleted.

Loading