git.delta.rocks / jrsonnet / refs/commits / e70291dbc65e

difftreelog

source

crates/jrsonnet-stdlib/build.rs726 Bsourcehistory
1use std::{env, fs::File, io::Write, path::Path};23use jrsonnet_parser::{parse, ParserSettings, Source};4use structdump::CodegenResult;56fn main() {7	let parsed = parse(8		include_str!("./src/std.jsonnet"),9		&ParserSettings {10			source: Source::new_virtual("<std>".into(), include_str!("./src/std.jsonnet").into()),11		},12	)13	.expect("parse");1415	let mut out = CodegenResult::default();1617	let v = out.codegen(&parsed, true);1819	{20		let out_dir = env::var("OUT_DIR").unwrap();21		let dest_path = Path::new(&out_dir).join("stdlib.rs");22		let mut f = File::create(dest_path).unwrap();23		f.write_all(24			("#[allow(clippy::redundant_clone)]".to_owned() + &v.to_string())25				.replace(';', ";\n")26				.as_bytes(),27		)28		.unwrap();29	}30}