celp-sdk 0.2.1

This package has been created to provide a rust SDK containing common functionality
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyhow::Result;

fn main() -> Result<()> {
    std::env::set_var("PROTOC", protobuf_src::protoc());

    let mut prost_build = prost_build::Config::new();
    prost_build.enable_type_names();
    prost_build.compile_protos(
        &[
            /* Any protobuf files go here */
            "protobuf/celp_system_event.proto",
            "protobuf/celp_system_event_app_info.proto",
        ],
        &["protobuf/"],
    )?;

    Ok(())
}