json-canon

Crates.io version Download docs.rs docs

Serialize JSON into a canonical format.

Install

shell cargo add json-canon

Example

```rust use jsoncanon::tostring; use serde_json::{json, Error};

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 ./examples/basic.rs

Usage

See docs

Caveats

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".

Bench

from_elem/basic/[{"_id":"59ef4a83ee8364808d761beb","about":"Nisi reprehenderit nulla ad officia pari... time: [52.791 µs 52.919 µs 53.102 µs] thrpt: [18.832 Kelem/s 18.897 Kelem/s 18.943 Kelem/s]

License

```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. ```

Related