summaryrefslogtreecommitdiff
path: root/arch/riscv/Cargo.toml
blob: 974535b7764e5714660f19251f397a427a05e7a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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
debug = 1