mirror of
https://github.com/encounter/zookeeper.git
synced 2026-03-30 11:44:47 -07:00
8 lines
149 B
Rust
8 lines
149 B
Rust
use anyhow::Result;
|
|
use vergen::EmitBuilder;
|
|
|
|
pub fn main() -> Result<()> {
|
|
EmitBuilder::builder().all_build().all_rustc().emit()?;
|
|
Ok(())
|
|
}
|