pie 0.1.1

Programmable Inference Engine (PIE)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate prost_build;

fn main() {
    prost_build::compile_protos(
        &[
            "proto/handshake.proto",
            "proto/ping.proto",
            "proto/l4m.proto",
            "proto/l4m_vision.proto",
        ],
        &["proto"],
    )
    .unwrap();

}