cf4eadaa6b
* Introduced 'version' command to all relevant binaries * Removed separate 'version' subcommand in favour of clap's 'long_version' field
9 lines
220 B
Rust
9 lines
220 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use vergen::{vergen, Config};
|
|
|
|
fn main() {
|
|
vergen(Config::default()).expect("failed to extract build metadata")
|
|
}
|