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

name = "yaxpeax-x86"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
repository = "x86-rs"
description = """
A rust x86-64 decoder
"""

[dependencies]
"num-traits" = "0.2"
"termios" = "0.2.2"
"termion" = "1.4.0"
"serde" = "*"
"serde_json" = "*"
"serde_derive" = "*"

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

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

[features]
default = []

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