Rust library to parse kerberos ccache structures
Load and save into a file: ```rust use kerberosccache::CCache; use std::fs; let data = fs::read("./bobtgt.ccache").expect("Unable to read file");
let ccache = CCache::parse(&data) .expect("Unable to parse file content") .1;
let data2 = ccache.build(); fs::write("./bobtgt2.ccache", data_2).expect("Unable to write file"); ```