use marshal_rs::{Value, dump, load};
fn main() {
let null_bytes: [u8; 3] = [0x04, 0x08, 0x30];
let json = load(&null_bytes, None).unwrap();
assert_eq!(json, Value::null());
let marshal_bytes: Vec<u8> = dump(json, None);
assert_eq!(&marshal_bytes, &null_bytes);
}