summaryrefslogtreecommitdiff
path: root/tests/rust_usage_test/Cargo.toml
blob: 45ecca66e28de18aa84af30691701c9f2e55c4b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "rust_usage_test"
version = "0.1.0"
authors = ["Robert Winslow <hello@rwinslow.com>",
           "Casper Neo <cneo@google.com>",
           "FlatBuffers Maintainers"]

[dependencies]
flatbuffers = { path = "../../rust/flatbuffers" }
flexbuffers = { path = "../../rust/flexbuffers" }
serde_derive = "1.0"
serde = "1.0"
serde_bytes = "0.11"

[[bin]]
name = "monster_example"
path = "bin/monster_example.rs"

[[bin]]
name = "flatbuffers_alloc_check"
path = "bin/flatbuffers_alloc_check.rs"

[[bin]]
name = "flexbuffers_alloc_check"
path = "bin/flexbuffers_alloc_check.rs"

[[bin]]
name = "sample_flexbuffers"
path = "../../samples/sample_flexbuffers.rs"

[[bin]]
name = "sample_flexbuffers_serde"
path = "../../samples/sample_flexbuffers_serde.rs"

[[bin]]
name = "sample_flatbuffers"
path = "../../samples/sample_binary.rs"

[dev-dependencies]
quickcheck = "0.6"
# TODO(rw): look into moving to criterion.rs
bencher = "0.1.5"
static_assertions = "1.0.0"
rand = "*"
quickcheck_derive = "*"

[[bench]]
# setup for bencher
name = "benchmarks"
harness = false