This is a Serde 1.0 compatible deserializer for Hjson, tailored for derive powered deserialization.
Hjson is a good language for a configuration file. Such files should be written by a human, read and modified by other humans, then deserialized into a precise structure by a program:
rust
let file_content = fs::read_to_string(&file_path)?;
let configuration = deser_hjson::from_str(&file_content);
If the configuration file is invalid or doesn't match the expected type, the error details the expectation and the error precise location.
```rust use { deser_hjson::, serde::Deserialize, std::collections::HashMap, }; // This Hjson document comes from https://hjson.github.io/ let hjson = r#" { // use #, // or /*/ comments, // omit quotes for keys key: 1 // omit quotes for strings contains: everything on this line // omit commas at the end of a line cool: { foo: 1 bar: 2 } // allow trailing commas list: [ 1, 2, ] // and use multiline strings realist: ''' My half empty glass, I will fill your empty half. Now you are half full. ''' } "#; // we'll deserialize it into this struct:
struct Example {
key: i32,
contains: Option
Broot can be configured either with TOML or with Hjson (the selection is dynamic, based on the file extension).
Resc can be configured either with JSON or with Hjson
In all my tests, deserializing as Hjson was faster than JSON (even with a JSON file) and much faster than TOML.
Yes in the sense that any JSON file can be read as Hjson.
Guessing the types in a format with implicit typing is way too dangereous.
When your user typed false
, was it a string or a boolean ? When she typed 3
, was it as string or a number ?
While not as crazy as YAML, Hjson has no internal guard for this, and thus should only be deserialized into explicit types.
Hjson isn't a data exchange format. It's intended to be written by humans, be full of comments and with a meaningful formatting. While serializers would make sense in some context, they would have to be template based, or offer other means to specify comments and formatting, and serde isn't the right tool for that.