mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 07:36:28 +00:00
8 lines
240 B
Rust
8 lines
240 B
Rust
use run_make_support::{htmldocck, rustdoc};
|
|
|
|
fn main() {
|
|
let out_dir = "rustdoc";
|
|
rustdoc().input("src/lib.rs").crate_name("foobar").crate_type("lib").out_dir(&out_dir).run();
|
|
htmldocck().arg(out_dir).arg("src/lib.rs").run();
|
|
}
|