subject
Due to line 12, this file is not adaptable for every project but example.
I have to fix it.
For now, you can use it just copy&paste and overwrite line 12. Sorry for this inconvenience.
fn main() {
let args: std::vec::Vec<std::string::String> = std::env::args().collect();
if args.len() < 2 {
eprintln!("usage: precompile <input.yml> [output.rs]");
std::process::exit(1);
}
let out = if args.len() >= 3 { args[2].clone() } else { "src/dsl_compiled.rs".to_string() };
let src = std::fs::read(&args[1])
.unwrap_or_else(|e| { eprintln!("read error: {e}"); std::process::exit(1); });
// store_ids: ordered list matching the DSL's store: values
// index position + 1 = store_id baked into leaf data
let store_ids = &["Memory", "Kvs", "Env", "CommonDb", "TenantDb"];
context_engine::dsl::Dsl::write(&src, store_ids, &out)
.unwrap_or_else(|e| { eprintln!("compile error: {e}"); std::process::exit(1); });
println!("written: {}", out);
}
subject
Due to line 12, this file is not adaptable for every project but example.
I have to fix it.
For now, you can use it just copy&paste and overwrite line 12. Sorry for this inconvenience.