first commit

This commit is contained in:
hal8174 2025-02-13 22:37:39 +01:00
commit e7f75310ab
7 changed files with 709 additions and 0 deletions

5
build.rs Normal file
View file

@ -0,0 +1,5 @@
extern crate prost_build;
fn main() {
prost_build::compile_protos(&["src/trace.proto"], &["src/"]).unwrap();
}