update rust crate

This commit is contained in:
2024-08-17 16:20:28 +02:00
parent 670fa334db
commit 2167e0512a
88 changed files with 20508 additions and 1741 deletions

View File

@@ -3,6 +3,7 @@ name = "binaryninja"
version = "0.1.0"
authors = ["Ryan Snyder <ryan@vector35.com>", "Kyle Martin <kyle@vector35.com>"]
edition = "2021"
rust-version = "1.77.0"
[features]
noexports = []
@@ -14,6 +15,10 @@ libc = "0.2"
rayon = { version = "1.8", optional = true }
binaryninjacore-sys = { path = "binaryninjacore-sys" }
[patch.crates-io]
# Patched pdb crate to implement some extra structures
pdb = { path = "./examples/pdb-ng/pdb-0.8.0-patched" }
[workspace]
members = [
"examples/basic_script",
@@ -28,6 +33,8 @@ members = [
"examples/mlil_lifter",
"examples/hlil_visitor",
"examples/hlil_lifter",
"examples/pdb-ng",
"examples/pdb-ng/demo",
"examples/template"
]