exonum-configuration 0.12.0

An Exonum service that provides functionality of modifying the global configuration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate exonum_build;

use exonum_build::{get_exonum_protobuf_files_path, protobuf_generate};

fn main() {
    let exonum_protos = get_exonum_protobuf_files_path();
    protobuf_generate(
        "src/proto",
        &["src/proto", &exonum_protos],
        "protobuf_mod.rs",
    );
}