mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
10 lines
218 B
Rust
10 lines
218 B
Rust
|
use anyhow::Result;
|
||
|
use vergen::{vergen, Config, SemverKind};
|
||
|
|
||
|
fn main() -> Result<()> {
|
||
|
let mut config = Config::default();
|
||
|
*config.git_mut().semver_kind_mut() = SemverKind::Lightweight;
|
||
|
|
||
|
vergen(config)
|
||
|
}
|