de-mls 4.0.0

Decentralized MLS — end-to-end encrypted group messaging with consensus-based membership management over gossipsub-like networks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fn main() -> Result<(), std::io::Error> {
    let mut config = prost_build::Config::new();

    config.extern_path(
        ".consensus.v1.Proposal",
        "::hashgraph_like_consensus::protos::consensus::v1::Proposal",
    );
    config.extern_path(
        ".consensus.v1.Vote",
        "::hashgraph_like_consensus::protos::consensus::v1::Vote",
    );

    config.compile_protos(
        &["src/protos/messages/v1/application.proto"],
        &["src/protos/"],
    )?;
    Ok(())
}