mirror of
https://github.com/speice-io/marketdata-shootout
synced 2025-04-04 10:01:35 -04:00
10 lines
349 B
Rust
10 lines
349 B
Rust
// 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
|
|
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
}
|