Skip to content

Commit 03a2417

Browse files
committedFeb 1, 2025··
update usage of rng
1 parent 9630202 commit 03a2417

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed
 

‎LICENSE.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document lists the licenses of the projects used in the instance directory.
44

55
## Overview of licenses
66

7-
- [Apache License 2.0](#Apache-2.0) (220)
7+
- [Apache License 2.0](#Apache-2.0) (227)
88
- [MIT License](#MIT) (67)
99
- [Unicode License v3](#Unicode-3.0) (20)
1010
- [ISC License](#ISC) (7)
@@ -1930,6 +1930,7 @@ You should also get your employer (if you work as a programmer) or school, if an
19301930

19311931
- [zerocopy-derive](https://github.com/google/zerocopy) 0.7.35
19321932
- [zerocopy](https://github.com/google/zerocopy) 0.7.35
1933+
- [zerocopy](https://github.com/google/zerocopy) 0.8.14
19331934

19341935
```
19351936
Apache License
@@ -2567,7 +2568,7 @@ You should also get your employer (if you work as a programmer) or school, if an
25672568

25682569
#### Used by
25692570

2570-
- [diesel](https://github.com/diesel-rs/diesel) 2.2.6
2571+
- [diesel](https://github.com/diesel-rs/diesel) 2.2.7
25712572
- [diesel_derives](https://github.com/diesel-rs/diesel/) 2.2.3
25722573
- [diesel_migrations](https://github.com/diesel-rs/diesel) 2.2.0
25732574
- [diesel_table_macro_syntax](https://github.com/diesel-rs/diesel/) 0.2.0
@@ -5799,6 +5800,7 @@ limitations under the License.
57995800
- [url](https://github.com/servo/rust-url) 2.5.4
58005801
- [version_check](https://github.com/SergioBenitez/version_check) 0.9.5
58015802
- [wasi](https://github.com/bytecodealliance/wasi) 0.11.0+wasi-snapshot-preview1
5803+
- [wasi](https://github.com/bytecodealliance/wasi-rs) 0.13.3+wasi-0.2.2
58025804
- [wasm-bindgen-backend](https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend) 0.2.99
58035805
- [wasm-bindgen-macro-support](https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support) 0.2.99
58045806
- [wasm-bindgen-macro](https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro) 0.2.99
@@ -6228,6 +6230,8 @@ limitations under the License.
62286230
#### Used by
62296231

62306232
- [rand](https://github.com/rust-random/rand) 0.8.5
6233+
- [rand](https://github.com/rust-random/rand) 0.9.0
6234+
- [rand_chacha](https://github.com/rust-random/rand) 0.9.0
62316235

62326236
```
62336237
Apache License
@@ -6413,6 +6417,7 @@ END OF TERMS AND CONDITIONS
64136417
#### Used by
64146418

64156419
- [rand_core](https://github.com/rust-random/rand) 0.6.4
6420+
- [rand_core](https://github.com/rust-random/rand) 0.9.0
64166421

64176422
```
64186423
Apache License
@@ -6609,6 +6614,7 @@ APPENDIX: How to apply the Apache License to your work.
66096614
#### Used by
66106615

66116616
- [getrandom](https://github.com/rust-random/getrandom) 0.2.15
6617+
- [getrandom](https://github.com/rust-random/getrandom) 0.3.1
66126618
- [rand_chacha](https://github.com/rust-random/rand) 0.3.1
66136619

66146620
```
@@ -7678,6 +7684,7 @@ limitations under the License.
76787684
- [unic-ucd-version](https://github.com/open-i18n/rust-unic/) 0.9.0
76797685
- [winapi-i686-pc-windows-gnu](https://github.com/retep998/winapi-rs) 0.4.0
76807686
- [winapi-x86_64-pc-windows-gnu](https://github.com/retep998/winapi-rs) 0.4.0
7687+
- [wit-bindgen-rt](https://github.com/bytecodealliance/wasi-rs) 0.33.0
76817688

76827689
```
76837690
Apache License

‎src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ async fn api(
375375
break;
376376
}
377377
}
378-
let mut rng = rand::thread_rng();
378+
let mut rng = rand::rng();
379379
instance_list.shuffle(&mut rng);
380380
Json(instance_list)
381381
}
@@ -425,7 +425,7 @@ async fn forward_me(
425425
instance_list.push(instance.to_owned());
426426
}
427427

428-
let mut rng = rand::thread_rng();
428+
let mut rng = rand::rng();
429429
instance_list.shuffle(&mut rng);
430430
if instance_list.is_empty() {
431431
// safe fallback - likely we have some connectivity issues (no instance

0 commit comments

Comments
 (0)
Please sign in to comment.