A wrapper around the hugo binary to proving building capabilities.
This crate has the hugo binaries embedded, so no external dependencies are pulled during build.
The version number reflect the hugo version embedded.
Add the following lines to you build.rs
file.
This will build a hugo page from the site
directory and put the output into the target
directory.
```rust use std::path::Path;
fn main() { let base = std::env::var("CARGOMANIFESTDIR").unwrap(); let sources = Path::new(&base).join("site"); let destination = Path::new(&base).join("target").join("site"); println!("cargo:rerun-if-changed={}",sources.display()); hugobuild::init() .withinput(sources) .with_output(destination) .build() .unwrap(); } ```