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

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

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

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