1[package]
2name = "rust_usage_test"
3version = "0.1.0"
4authors = ["Robert Winslow <hello@rwinslow.com>", "FlatBuffers Maintainers"]
5
6[dependencies]
7flatbuffers = { path = "../../rust/flatbuffers" }
8
9[[bin]]
10name = "monster_example"
11path = "bin/monster_example.rs"
12
13[[bin]]
14name = "alloc_check"
15path = "bin/alloc_check.rs"
16
17
18[dev-dependencies]
19quickcheck = "0.6"
20# TODO(rw): look into moving to criterion.rs
21bencher = "0.1.5"
22static_assertions = "1.0.0"
23
24[[bench]]
25# setup for bencher
26name = "flatbuffers_benchmarks"
27harness = false
28