maciejhirsz / json-rust

JSON implementation in Rust
Apache License 2.0
566 stars 63 forks source link

Generate JSON output with sorted object keys #189

Open djmitche opened 4 years ago

djmitche commented 4 years ago

"Stable" JSON output libraries generally sort object keys lexically. While I understand from #178 that the default order is insertion order, it would be great to also have an option to produce output with sorted keys.

I think this would this entail a few additional Generator structs, with write_object overridden,