1 2 3 4 5 6 7
use std::path::Path; fn main() -> anyhow::Result<()> { let root = Path::new(env!("CARGO_MANIFEST_DIR")); auric_build::build(root)?; Ok(()) }