Crates.io | json-canon |
lib.rs | json-canon |
version | 0.1.3 |
source | src |
created_at | 2023-05-11 03:21:34.219897 |
updated_at | 2023-05-13 09:42:13.014727 |
description | Serialize JSON into a canonical format. |
homepage | |
repository | https://github.com/ahdinosaur/json-canon |
max_upload_size | |
id | 861804 |
size | 84,184 |
json-canon
Serialize JSON into a canonical format.
cargo add json-canon
use json_canon::to_string;
use serde_json::json;
let data = json!({
"from_account": "543 232 625-3",
"to_account": "321 567 636-4",
"amount": 500,
"currency": "USD"
});
println!("{}", to_string(&data)?);
// {"amount":500,"currency":"USD","from_account":"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]
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.