dtolnay / path-to-error

Find out path at which a deserialization error occurred
Apache License 2.0
320 stars 12 forks source link

Have Visitors visit 128-bit integers #15

Closed ramosbugs closed 2 years ago

ramosbugs commented 2 years ago

Deserialization of 128-bit integers currently fails with invalid type: u128, expected u128 due to the Visitor implementations in this crate not defining visit_i128/visit_u128. This PR corrects the issue and adds a corresponding test.