tzf_rel/
lib.rs

1// pub fn load_full() -> Vec<u8> {
2//     include_bytes!("../combined-with-oceans.bin").to_vec()
3// }
4
5pub fn load_reduced() -> Vec<u8> {
6    include_bytes!("../combined-with-oceans.reduce.bin").to_vec()
7}
8
9pub fn load_compressed() -> Vec<u8> {
10    include_bytes!("../combined-with-oceans.reduce.compress.bin").to_vec()
11}
12
13pub fn load_preindex() -> Vec<u8> {
14    include_bytes!("../combined-with-oceans.reduce.preindex.bin").to_vec()
15}