Description
What is the current bug behavior?
It's a well known rough edge that serde_json
's arbitary precision feature changes the behavior for all users of the crate; affecting uses of 3rd party data types the most.
In our projects, we've gone to great lengths to avoid turning this feature on because it breaks some (or all) of our integration test code, instead opting for rust_decimal
in all numeric cases which has support for using custom deserializers on each field to precisely control when string vs number types are expected in numeric fields.
While trying to upgrade our wrapper library from hurl
/hurl_core
v4.1 -> v4.3 (for isIsoDate
support) we noticed that CI was failing in a non-obvious way (which is
Steps to reproduce
For a project with rust_decimal
(with serde-with-float
feature to make the custom deserializer available, it's not important for this bug), using this snippet:
#[test]
fn deserialize_float_to_rust_decimal() {
#[derive(serde::Deserialize)]
struct Data {
#[serde(with = "rust_decimal::serde::float")]
value: rust_decimal::Decimal,
}
let json = r#"
{
"value": 1.0
}
"#;
serde_json::from_str::<Data>(json).unwrap();
}
... if we were to introduce hurl
v4.3 dependency this test would spontaneously fail, without changes.
What is the expected correct behavior?
- A minor library upgrade shouldn't significantly change behavior at runtime.
- It should be possible to use
hurl
as a library without being forced to use thearbitrary_precision
feature onserde_json
.
Execution context
- Crate importing
hurl
hurl
Version: 4.3.0
Possible fixes
Not sure yet.
It's possible that an optional crate feature could solve this, which is always used by the CLI binary but gives library importers control over their context. Though, I haven't yet scanned the codebase for exactly how or why this feature is being used, so it may be non-trivial to do this.