2 unstable releases
0.2.0 | Nov 17, 2023 |
---|---|
0.1.0 | Nov 15, 2023 |
#2881 in Parser implementations
Used in 2 crates
(via orphism)
4KB
userdata3
What is it?
Rust data types for (de)serializing user settings from userdata3.json files
How do I obtain this majestic tool?
Run the following Cargo command in your project directory (assuming you have cargo-edit installed):
cargo add userdata3
Or add the following line to your Cargo.toml
(in the [dependencies]
array):
userdata3 = "^ 0.2"
How do I use it?
use userdata3::UserData3;
fn main() {
let json = std::fs::read_to_string("./path/to/some.userdata3.json").unwrap();
let userdata3: UserData3 = serde_json::from_str(&json).unwrap();
println!("{userdata3:#?}");
}
How was this made?
Using the discovery process for undocumented JSON formats described here.
License
userdata3
is available under the MIT License. See LICENSE.txt
for the full text.
While the license is short, it's still written in fancy lawyer-speak. If you prefer more down-to-earth language, consider the following:
Dependencies
~1.4–2.5MB
~49K SLoC