mirror of
https://github.com/p2p-ld/docs.git
synced 2024-11-10 00:34:30 +00:00
16 lines
No EOL
284 B
Rust
16 lines
No EOL
284 B
Rust
// dummy file
|
|
|
|
use mdbook::MDBook;
|
|
|
|
fn main() {
|
|
let root_dir = "./";
|
|
let mut md = MDBook::load(root_dir)
|
|
.expect("Unable to load the book");
|
|
md.build().expect("Building failed");
|
|
|
|
|
|
|
|
// println!("This package does nothing! It's just for gathering deps to build the book!")
|
|
|
|
|
|
} |