eh2telegraph/bot/build.rs

12 lines
221 B
Rust
Raw Permalink Normal View History

2024-04-20 08:21:36 +00:00
use vergen::EmitBuilder;
fn main() {
// Generate the default 'cargo:' instruction output
EmitBuilder::builder()
.all_build()
.all_cargo()
.all_rustc()
.emit()
.unwrap();
}