bigdecimal-rs
bigdecimal-rs copied to clipboard
how to serialize map value to a number instead of string?
I know that struct fields can be serialize to numbers use #[serde(with = "bigdecimal::serde::json_num")]. but how to do that on maps like: HashMap<String, BigDecimal>? How to serialize it to {"number": 123.456}?