File tree Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 55 - beta
66 - nightly
77
8- branches :
9- except :
10- - dev
11- - benches
12-
13- matrix :
8+ jobs :
149 allow_failures :
1510 - rust : nightly
16-
17- os :
18- - linux
11+ fast_finish : true
Original file line number Diff line number Diff line change 11[package ]
22name = " json"
3- version = " 0.12.3 "
3+ version = " 0.12.4 "
44authors = [" Maciej Hirsz <hello@maciej.codes>" ]
55description = " JSON implementation in Rust"
66repository = " https://github.com/maciejhirsz/json-rust"
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ macro_rules! array {
310310
311311 // Construct the actual array
312312 ( @END $( $i: expr, ) * ) => ( {
313- let size = 0 $( + { let _ = || $i; 1 } ) * ;
313+ let size = 0 $( + { let _ = & $i; 1 } ) * ;
314314 let mut array = Vec :: with_capacity( size) ;
315315
316316 $(
@@ -404,7 +404,7 @@ macro_rules! object {
404404
405405 // Construct the actual object
406406 ( @END $( $k: expr => $v: expr, ) * ) => ( {
407- let size = 0 $( + { let _ = || $k; 1 } ) * ;
407+ let size = 0 $( + { let _ = & $k; 1 } ) * ;
408408 let mut object = $crate:: object:: Object :: with_capacity( size) ;
409409
410410 $(
You can’t perform that action at this time.
0 commit comments