61 releases (22 breaking)
new 0.137.0 | Nov 4, 2024 |
---|---|
0.135.0 | Sep 27, 2024 |
0.130.0 | Jul 29, 2024 |
0.124.1 | Mar 20, 2024 |
0.116.0 | Jul 31, 2023 |
#140 in Build Utils
939 downloads per month
8KB
129 lines
A wrapper around the hugo binary to proving building capabilities.
This crate downloads the hugo binaries on demand during build. So the first build needs connectivity to github.
The version number reflects the hugo version embedded.
Usage
Add the depenendy to your cargo.toml
.
cargo add --build hugo-build
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.
use std::path::Path;
fn main() {
let base = std::env::var("CARGO_MANIFEST_DIR").unwrap();
let sources = Path::new(&base).join("site");
let destination = Path::new(&base).join("target").join("site");
println!("cargo:rerun-if-changed={}",sources.display());
hugo_build::init()
.with_input(sources)
.with_output(destination)
.build()
.unwrap();
}
Dependencies
~6–20MB
~273K SLoC