You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently incorporated tracing-bunyan-formatter into a project, and found it triggered a regression error in deserializing an untagged enum with serde_json.
tracing-bunyan-formatter enables the arbitrary-precision field on serde-json, which causes the bug, as explained here: serde-rs/json#559
For what it's worth, I pulled down this crate and, and the same test fails with and without the feature (parent_properties_are_propagated).
EDIT:
Also, let me know if it's inappropriate for me to to notify you of a bug in another crate. I figured since it affects your users, you'd want to know.
The text was updated successfully, but these errors were encountered:
Apparently, this crate with arbitrary-precision introduced this bug on my application, specifically on the juniper GraphQL crate, making scalars parser to break, as better described here: graphql-rust/juniper#390
Is disabling the feature too much of a trouble? Or perhaps implementing the workaround on serde-rs/json#559 (comment).
I recently incorporated tracing-bunyan-formatter into a project, and found it triggered a regression error in deserializing an untagged enum with
serde_json
.tracing-bunyan-formatter
enables thearbitrary-precision
field on serde-json, which causes the bug, as explained here: serde-rs/json#559For what it's worth, I pulled down this crate and, and the same test fails with and without the feature (
parent_properties_are_propagated
).EDIT:
Also, let me know if it's inappropriate for me to to notify you of a bug in another crate. I figured since it affects your users, you'd want to know.
The text was updated successfully, but these errors were encountered: