soroban-cli 23.1.4

Soroban CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    crate_git_revision::init();
    set_protocol_features();
}

fn set_protocol_features() {
    let version = env!("CARGO_PKG_VERSION");
    let _major_version: u32 = version
        .split('.')
        .next()
        .unwrap_or("0")
        .parse()
        .unwrap_or(0);
}