c361de62a5
* Introduces query for contract build information * Removed temporary test garbage * Removed unused imports in validator-client if built without nymd-client feature
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")
|
|
}
|