Crates.io | json_io |
lib.rs | json_io |
version | 0.3.0 |
source | src |
created_at | 2015-05-30 05:45:48.230953 |
updated_at | 2017-03-15 04:20:19.886555 |
description | A tool for simplifying saving and loading serializable types to and from json files. |
homepage | https://github.com/mitchmindtree/json_io |
repository | https://github.com/mitchmindtree/json_io.git |
max_upload_size | |
id | 2260 |
size | 10,266 |
A tool for simplifying saving and loading serializable types to and from json files.
Supports both:
rustc-serialize
(by default) or
serde
with the --features="serde_serialization" --no-default-features
flags.
It looks like this:
extern crate find_folder;
extern crate json_io;
fn main() {
let test_string = "This is a json_io test!".to_owned();
let target = find_folder::Search::Parents(1).for_folder("target").unwrap();
let path = target.join("test");
json_io::save(&path, &test_string).unwrap();
let the_string: String = json_io::load(&path).unwrap();
assert_eq!(&test_string, &the_string);
println!("{:?}", the_string);
}
You can add it to your project by adding this to your Cargo.toml:
[dependencies]
json_io = "*"