json-canon
Serialize JSON into a canonical format.
shell
cargo add json-canon
```rust use jsoncanon::tostring; use serde_json::json;
let data = json!({ "fromaccount": "543 232 625-3", "toaccount": "321 567 636-4", "amount": 500, "currency": "USD" });
println!("{}", tostring(&data)?); // {"amount":500,"currency":"USD","fromaccount":"543 232 625-3","to_account":"321 567 636-4"} ```
See docs
Different from the JavaScript implementation, serde_json
deserializes f64::NAN
and f64::Infinite
as None
, so if given a Rust struct with these values, the json-canon
serializer will currently output "null"
.
from_elem/basic/[{"_id":"59ef4a83ee8364808d761beb","about":"Nisi reprehenderit nulla ad officia pari...
time: [28.019 µs 28.032 µs 28.047 µs]
thrpt: [35.654 Kelem/s 35.673 Kelem/s 35.690 Kelem/s]
```txt Copyright 2023 Michael Williams
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```