sinusoidal 0.2.0

The official SDK to write rust apps for the Sinusoidal Systems Digital Measurement Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate prost_build;

fn main() {
  prost_build::compile_protos(
    &[
      "proto/control_api.proto",
      "proto/streaming_api.proto",
      "proto/goose_api.proto",
    ],
    &["proto/"],
  )
  .unwrap();
}