blob: 2fb903a7f1289d433ffd25e17594891c172806e6 [file] [log] [blame] [edit]
extern crate rgb;
extern crate serde_json;
use rgb::*;
// Run using: cargo run --features=serde --example serde
fn main() {
let color = RGB { r:255_u8, g:0, b:100 };
println!("{}", serde_json::to_string(&color).unwrap());
let color: RGB8 = serde_json::from_str("{\"r\":10,\"g\":20,\"b\":30}").unwrap();
println!("{}", color);
}