-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
27 lines (24 loc) · 1.01 KB
/
Cargo.toml
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
27
[package]
name = "disassemble"
version = "0.0.1"
edition = "2021"
authors = ["Bruce Mitchener <bruce.mitchener@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Tools for working with disassembled code and extracting higher level information like control flow graphs. Useful for writing disassemblers, decompilers, debuggers, profilers and more."
keywords = ["disassemble", "assembly", "compile", "decompile"]
homepage = "https://github.com/endoli/disassemble.rs"
repository = "https://github.com/endoli/disassemble.rs"
documentation = "https://endoli.github.io/disassemble.rs/"
[features]
bpf = ["rbpf"]
webassembly = ["parity-wasm"]
all = ["bpf", "capstone", "webassembly", "burst"]
[dependencies]
petgraph = "0.6"
burst = { version = "0.0.2", optional = true }
capstone = { version = "0.5", optional = true }
parity-wasm = { version = "0.32", optional = true }
rbpf = { git = "https://github.com/qmonnet/rbpf", optional = true }
[workspace]
members = ["tools/disassemble-bpf", "tools/disassemble-wasm"]