byztimed 2.0.1

Byzantine fault-tolerant time synchronization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Copyright 2020, Akamai Technologies, Inc.
//SPDX-License-Identifier: Apache-2.0

extern crate prost_build;

fn main() {
    let mut prost_build = prost_build::Config::new();
    prost_build.type_attribute(
        ".",
        "#[cfg_attr(test, derive(quickcheck_derive::Arbitrary))]",
    );
    prost_build
        .compile_protos(&["src/wire.proto"], &["src/"])
        .unwrap();
}