dfraw_json_parser 0.17.5

Library which parses Dwarf Fortress raw files into JSON
Documentation
1
2
3
4
5
6
7
lazy_static::lazy_static! {
    /// The encoding used by dwarf fortress text files
    pub static ref DF_ENCODING: &'static encoding_rs::Encoding =
        encoding_rs::Encoding::for_label(b"latin1").unwrap_or_else(|| {
            panic!("Failed to get encoding: latin1");
        });
}