File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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"
2727
2828[dependencies ]
2929byteorder = " 1.5.0"
30- fast-float = " 0.2.0 "
30+ fast-float2 = " 0.2.3 "
3131itoa = " 1.0"
3232nom = " 7.1.3"
33- ordered-float = { version = " 4.2 " , default-features = false }
33+ ordered-float = { version = " 4.5 " , default-features = false }
3434rand = { version = " 0.8.5" , features = [" small_rng" ] }
3535ryu = " 1.0"
3636serde_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> {
271271 }
272272 }
273273
274- match fast_float :: parse ( s) {
274+ match fast_float2 :: parse ( s) {
275275 Ok ( v) => Ok ( Value :: Number ( Number :: Float64 ( v) ) ) ,
276276 Err ( _) => Err ( self . error ( ParseErrorCode :: InvalidNumberValue ) ) ,
277277 }
You can’t perform that action at this time.
0 commit comments