File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " cargo"
4+ directory : " /"
5+ schedule :
6+ interval : " monthly"
7+ open-pull-requests-limit : 10
8+ - package-ecosystem : " github-actions"
9+ directory : " /"
10+ schedule :
11+ interval : " monthly"
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 targets : ${{ matrix.target }}
101101 toolchain : ${{ matrix.toolchain }}
102102 - name : Cache cargo plugins
103- uses : actions/cache@v1
103+ uses : actions/cache@v4
104104 with :
105105 path : ~/.cargo/bin/
106106 key : ${{ runner.os }}-cargo-plugins
Original file line number Diff line number Diff line change 1010//!
1111//! # Example
1212//!
13- //! To initialize a generator, use the [`SeedableRng`][rand_core::SeedableRng] trait:
13+ //! To initialize a generator, use the [`SeedableRng`] trait:
1414//!
1515//! ```
1616//! use rand_core::{SeedableRng, RngCore};
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ pub struct Seed512(pub [u8; 64]);
246246
247247impl Seed512 {
248248 /// Return an iterator over the seed.
249- pub fn iter ( & self ) -> core:: slice:: Iter < u8 > {
249+ pub fn iter ( & self ) -> core:: slice:: Iter < ' _ , u8 > {
250250 self . 0 . iter ( )
251251 }
252252}
You can’t perform that action at this time.
0 commit comments