Add all the IEX parsers

This commit is contained in:
2019-08-24 22:49:07 -04:00
parent d13eb1c725
commit 5ce7ce740b
6 changed files with 476 additions and 39 deletions

View File

@ -7,11 +7,13 @@ fn main() {
.src_prefix("")
.file("marketdata.capnp")
.output_path("src/")
.run().expect("Unable to compile capnpc");
.run()
.expect("Unable to compile capnpc");
flatc_rust::run(flatc_rust::Args {
inputs: &[Path::new("marketdata.fbs")],
out_dir: Path::new("src/"),
..Default::default()
}).expect("Unable to compile flatc");
}
})
.expect("Unable to compile flatc");
}