casper-client 2.0.0

A client library and binary for interacting with the Casper network
Documentation
1
2
3
4
5
6
7
use vergen::{Config, ShaKind};

fn main() {
    let mut config = Config::default();
    *config.git_mut().sha_kind_mut() = ShaKind::Short;
    let _ = vergen::vergen(config);
}