File tree 3 files changed +18
-10
lines changed
.github/actions/github-release
3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 1
- name : ' wasmtime github releases'
2
- description : ' wasmtime github releases'
1
+ name : " wasmtime github releases"
2
+ description : " wasmtime github releases"
3
3
inputs :
4
4
token :
5
- description : ' '
5
+ description : " "
6
6
required : true
7
7
name :
8
- description : ' '
8
+ description : " "
9
9
required : true
10
10
files :
11
- description : ' '
11
+ description : " "
12
12
required : true
13
13
runs :
14
- using : ' docker'
15
- image : ' Dockerfile'
14
+ using : " docker"
15
+ image : " Dockerfile"
Original file line number Diff line number Diff line change @@ -134,7 +134,15 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
134
134
) ) ;
135
135
}
136
136
} ;
137
+ <<<<<<< Updated upstream
137
138
139
+ ||||||| Stash base
140
+ }
141
+
142
+ let snappy_portion = & dot_rustc [ 8 ..] ;
143
+
144
+ =======
145
+ >>>>>>> Stashed changes
138
146
let mut snappy_decoder = SnapDecoder :: new ( snappy_portion ) ;
139
147
140
148
// the bytes before version string bytes, so this basically is:
Original file line number Diff line number Diff line change 1
1
//! We don't use `rand`, as that's too many things for us.
2
2
//!
3
- //! Currently, we use oorandom instead, but it misses these two utilities.
4
- //! Perhaps we should switch to `fastrand`, or our own small prng , it's not like
5
- //! we need anything move complicatied that xor-shift.
3
+ //! We currently use oorandom instead, but it's missing these two utilities.
4
+ //! Perhaps we should switch to `fastrand`, or our own small PRNG , it's not like
5
+ //! we need anything more complicated that xor-shift.
6
6
7
7
pub fn shuffle < T > ( slice : & mut [ T ] , mut rand_index : impl FnMut ( usize ) -> usize ) {
8
8
let mut remaining = slice. len ( ) - 1 ;
You can’t perform that action at this time.
0 commit comments