2019-11-17 07:21:53 +03:00
|
|
|
use string_cache_codegen;
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2018-09-16 14:25:41 +03:00
|
|
|
use std::{env, path::Path};
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
fn main() {
|
2019-01-07 13:43:47 +03:00
|
|
|
let strs = include_str!("words.txt")
|
|
|
|
.lines()
|
|
|
|
.map(|l| l.trim())
|
|
|
|
.collect::<Vec<_>>();
|
2018-11-17 10:38:23 +03:00
|
|
|
gen("js_word", "JsWord", &strs);
|
2017-12-22 15:51:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn gen(mac_name: &str, type_name: &str, atoms: &[&str]) {
|
|
|
|
string_cache_codegen::AtomType::new(type_name, &format!("{}!", mac_name))
|
|
|
|
.atoms(atoms)
|
|
|
|
.write_to_file(&Path::new(&env::var("OUT_DIR").unwrap()).join(format!("{}.rs", mac_name)))
|
|
|
|
.unwrap();
|
|
|
|
}
|