aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 2d496d2e5217461d11cdf5b791a4aa5eda939b69 (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 = "x86-rs"
description = "rust x86-64 decoder"

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

[[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 = []