File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ rust-version = "1.77"
27
27
28
28
[dependencies ]
29
29
byteorder = " 1.5.0"
30
- fast-float = " 0.2.0 "
30
+ fast-float2 = " 0.2.3 "
31
31
itoa = " 1.0"
32
32
nom = " 7.1.3"
33
- ordered-float = { version = " 4.2 " , default-features = false }
33
+ ordered-float = { version = " 4.5 " , default-features = false }
34
34
rand = { version = " 0.8.5" , features = [" small_rng" ] }
35
35
ryu = " 1.0"
36
36
serde_json = { version = " 1.0" , default-features = false , features = [" std" ] }
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ impl<'a> Parser<'a> {
271
271
}
272
272
}
273
273
274
- match fast_float :: parse ( s) {
274
+ match fast_float2 :: parse ( s) {
275
275
Ok ( v) => Ok ( Value :: Number ( Number :: Float64 ( v) ) ) ,
276
276
Err ( _) => Err ( self . error ( ParseErrorCode :: InvalidNumberValue ) ) ,
277
277
}
You can’t perform that action at this time.
0 commit comments