Skip to content

Commit dfc857e

Browse files
committed
Cargo.lock: pin dependencies
As discussed in #1698. This also loosen the dependency to `chacha20`. Not binding to a strict version of chacha20 (only a minimum) would make for a much smoother release process. Especially to get over the API breaks humps coming in rand_core 0.10.0-rc.3
1 parent 8336923 commit dfc857e

File tree

4 files changed

+345
-5
lines changed

4 files changed

+345
-5
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,6 @@ jobs:
8585

8686
steps:
8787
- uses: actions/checkout@v4
88-
- name: Not MSRV
89-
if: ${{ matrix.variant != 'MSRV' }}
90-
run: cargo generate-lockfile --ignore-rust-version
9188
- name: Install toolchain
9289
uses: dtolnay/rust-toolchain@master
9390
with:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
target
2-
Cargo.lock
32
rand_wasm_bindgen_test*.[tj]s
43
rand_wasm_bindgen_test*.wasm

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ exclude = ["benches", "distr_test"]
7676
rand_core = { version = "0.10.0-rc-2", default-features = false }
7777
log = { version = "0.4.4", optional = true }
7878
serde = { version = "1.0.103", features = ["derive"], optional = true }
79-
chacha20 = { version = "=0.10.0-rc.5", default-features = false, features = ["rng"], optional = true }
79+
chacha20 = { version = "0.10.0-rc.5", default-features = false, features = ["rng"], optional = true }
8080
getrandom = { version = "0.3.0", optional = true }
8181

8282
[dev-dependencies]

0 commit comments

Comments
 (0)