Skip to content

Commit cb8f156

Browse files
authored
Merge pull request #858 from uuid-rs/chore/getrandom-04
Update getrandom to 0.4
2 parents c3346dd + a59c061 commit cb8f156

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ jobs:
8888
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
8989

9090
- name: Install Rust toolchain
91-
run: rustup update 1.63.0
91+
run: rustup update 1.85.0
9292

9393
- name: Version features
94-
run: cargo +1.63.0 build --manifest-path tests/smoke-test/Cargo.toml
94+
run: cargo +1.85.0 build --manifest-path tests/smoke-test/Cargo.toml
9595

9696
examples:
9797
name: Tests / Examples
@@ -186,18 +186,18 @@ jobs:
186186
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
187187

188188
- name: Install Rust Toolchain
189-
run: rustup update nightly
189+
run: rustup update nightly-2026-02-11
190190

191191
- name: Install Miri
192192
run: |
193-
rustup toolchain install nightly --component miri
194-
cargo +nightly miri setup
193+
rustup toolchain install nightly-2026-02-11 --component miri
194+
cargo +nightly-2026-02-11 miri setup
195195
196196
- name: Default features
197-
run: cargo +nightly miri test --lib --all-features
197+
run: cargo +nightly-2026-02-11 miri test --lib --all-features
198198

199199
- name: BE
200-
run: cargo +nightly miri test --target s390x-unknown-linux-gnu --lib --all-features
200+
run: cargo +nightly-2026-02-11 miri test --target s390x-unknown-linux-gnu --lib --all-features
201201

202202
clippy:
203203
name: Build / Clippy

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ name = "uuid"
3030
readme = "README.md"
3131
repository = "https://github.com/uuid-rs/uuid"
3232
version = "1.20.0" # remember to update html_root_url in lib.rs
33-
rust-version = "1.63.0"
33+
rust-version = "1.85.0"
3434

3535
[package.metadata.docs.rs]
3636
rustc-args = ["--cfg", "uuid_unstable"]
@@ -134,7 +134,7 @@ default-features = false
134134
# Private
135135
# (Formally public)
136136
[target.'cfg(not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none"))))'.dependencies.getrandom]
137-
version = "0.3"
137+
version = "0.4"
138138
optional = true
139139

140140
[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies.uuid-rng-internal-lib]

rng/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ license = "Apache-2.0 OR MIT"
1818

1919
# Forces a dependency on `getrandom`
2020
[dependencies.getrandom]
21-
version = "0.3"
21+
version = "0.4"
2222
optional = true
2323

2424
[dependencies.rand]
25-
version = "0.9"
25+
version = "0.10"
2626
optional = true

tests/wasm32-getrandom-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ path = "../../"
1111
features = ["v4", "rng-getrandom"]
1212

1313
[dependencies.getrandom]
14-
version = "0.3"
14+
version = "0.4"
1515
features = ["wasm_js"]
1616

1717
[dependencies.wasm-bindgen]

0 commit comments

Comments
 (0)