marble-machinations/build.rs

10 lines
190 B
Rust
Raw Permalink Normal View History

2024-12-21 19:01:42 +01:00
use std::{fs::File, io::Write};
2024-12-22 16:39:40 +01:00
fn main() {
2024-12-21 19:01:42 +01:00
let version = concat!("v", env!("CARGO_PKG_VERSION"));
2024-12-22 16:39:40 +01:00
File::create("version.txt")
.unwrap()
.write_all(version.as_bytes())
.unwrap();
}