group levels into chapters
This commit is contained in:
parent
ff69b967dd
commit
42dfe4fac7
22 changed files with 236 additions and 210 deletions
9
build.rs
9
build.rs
|
@ -1,6 +1,9 @@
|
|||
use std::{fs::File, io::Write};
|
||||
|
||||
fn main(){
|
||||
fn main() {
|
||||
let version = concat!("v", env!("CARGO_PKG_VERSION"));
|
||||
File::create("version.txt").unwrap().write_all(version.as_bytes()).unwrap();
|
||||
}
|
||||
File::create("version.txt")
|
||||
.unwrap()
|
||||
.write_all(version.as_bytes())
|
||||
.unwrap();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue