aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 7931af41492b21535cee4556c8f2b8eb84722530 (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
[package]

name = "yaxpeax-x86"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
repository = "http://git.iximeow.net/yaxpeax-x86/"
description = "x86 decoders for the yaxpeax project"

[dependencies]
yaxpeax-arch = { path = "../../yaxpeax-arch" }
"num-traits" = "0.2"
"termion" = "1.4.0"
"serde" = "1.0"
"serde_json" = "1.0"
"serde_derive" = "1.0"

[[test]]
name = "test"
path = "test/test.rs"

[[bench]]
name = "bench"
path = "test/bench.rs"

[profile.bench]
opt-level = 3
lto = true

[profile.release]
opt-level = 3
lto = true

[features]
default = []

# This enables some capstone benchmarks over the same
# instruction bytes used to bench this code.
capstone_bench = []

use-serde = []