summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
blob: 84976d3ca7fdcc95e634775b20182b6fb5587bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "binaryninja"
version = "0.1.0"
authors = ["Ryan Snyder <ryan@vector35.com>", "Kyle Martin <kyle@vector35.com>"]
edition = "2021"

[features]
noexports = []

[dependencies]
lazy_static = "1.4.0"
log = "0.4"
libc = "0.2"
rayon = { version = "1.0", optional = true }
binaryninjacore-sys = { path = "binaryninjacore-sys" }

[workspace]
members = [
    "examples/basic_script",
    "examples/decompile",
    "examples/dwarfdump",
    "examples/dwarfexport",
    "examples/flowgraph",
    "examples/minidump",
    "examples/template"
]