Get A Generic JSON5 Object From A String In Rust
October 2024
This is how I'm pulling JSON5 data into objects without an explict type in Rust:
```cargo
serde_json = "1.0.132"
serde_json5 = "0.1.0"
```
use Value;
use serde_json5;
Output:
[/Users/alan/.cargo/target/55/19854259915251/_active_nvim_run:13:3] data.unwrap() = Object {
"alfa": String("foxtrot"),
}
end of line