summaryrefslogtreecommitdiff
path: root/arch/riscv/Cargo.toml
blob: a9148e6e1ce87c2877df6a8d1f8b70aafa71174b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "arch_riscv"
version = "0.1.0"
authors = ["Ryan Snyder <ryan.snyder.or@gmail.com>"]
edition = "2021"

[dependencies]
binaryninja = { path = "../../rust" }
riscv-dis = { path = "disasm" }
log = "0.4"
rayon = { version = "1.0", optional = true }

[features]
default = []
liftcheck = ["rayon", "binaryninja/rayon"]

[lib]
crate-type = ["cdylib"]

[profile.release]
panic = "abort"
lto = true