Files
Lennon Day-Reynolds 9b10115c9a general cleanup and updates
- updated dependencies (esp. those with vulnerabilities)
- add 'audit' make target for ongoing checks
- convert to cargo workspace
2026-02-17 09:02:47 -08:00

18 lines
618 B
Rust

fn main() {
let src = "openapi.json";
println!("cargo:rerun-if-changed={}", src);
let file = std::fs::File::open(src).unwrap();
println!("file:{:?}", file);
let spec = serde_json::from_reader(file).unwrap();
let mut generator = progenitor::Generator::default();
let tokens = generator.generate_tokens(&spec).unwrap();
let ast = syn::parse2(tokens).unwrap();
let content = prettyplease::unparse(&ast);
let mut out_file = std::path::Path::new(&std::env::var("OUT_DIR").unwrap()).to_path_buf();
out_file.push("codegen.rs");
std::fs::write(out_file, content).unwrap();
}