summaryrefslogtreecommitdiff
path: root/arch/riscv/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv/Cargo.toml')
-rw-r--r--arch/riscv/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/riscv/Cargo.toml b/arch/riscv/Cargo.toml
new file mode 100644
index 00000000..a9148e6e
--- /dev/null
+++ b/arch/riscv/Cargo.toml
@@ -0,0 +1,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