deser-hjson icon indicating copy to clipboard operation
deser-hjson copied to clipboard

A Serde 1.0 compatible Rust deserializer for Hjson

Results 2 deser-hjson issues
Sort by recently updated
recently updated
newest added

```rust #![allow(dead_code, unused_variables)] use std::collections::HashMap; #[derive(Debug, serde::Deserialize)] struct Config { foo: Option, #[serde(flatten)] other: HashMap, } fn main() { let src = r#" aaa: 1 bbb: true ccc: 3 ddd:...

The goal of this pull request is to address to areas of the specification that are unclear and not handled well by the parser. This is all documented in the...