json_io

Crates.iojson_io
lib.rsjson_io
version0.3.0
sourcesrc
created_at2015-05-30 05:45:48.230953
updated_at2017-03-15 04:20:19.886555
descriptionA tool for simplifying saving and loading serializable types to and from json files.
homepagehttps://github.com/mitchmindtree/json_io
repositoryhttps://github.com/mitchmindtree/json_io.git
max_upload_size
id2260
size10,266
(mitchmindtree)

documentation

README

json_io Build Status

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 = "*"
Commit count: 8

cargo fmt