Compile schemas for Cap'n'Proto and Flatbuffers

This commit is contained in:
2019-08-18 19:45:47 -04:00
commit 0175a17269
10 changed files with 1437 additions and 0 deletions

11
src/main.rs Normal file
View File

@ -0,0 +1,11 @@
// Cap'n'Proto and Flatbuffers typically ask that you generate code on the fly to match
// the schemas. For purposes of auto-complete and easy browsing in the repository,
// we generate the code and just copy it into the src/ tree.
pub mod marketdata_capnp;
pub mod marketdata_generated; // Flatbuffers
pub mod marketdata_custom;
fn main() {
println!("Hello, world!");
}