mirror of
https://github.com/speice-io/marketdata-shootout
synced 2025-07-04 23:34:52 -04:00
Compile schemas for Cap'n'Proto and Flatbuffers
This commit is contained in:
11
src/main.rs
Normal file
11
src/main.rs
Normal 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!");
|
||||
}
|
Reference in New Issue
Block a user