aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3076334b9c6158b9f81feebaabf854398df4276b (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 = "yaxpeax-dis"
version = "0.1.0"
authors = ["iximeow <me@iximeow.net>"]
edition = "2018"
description = "disassembly tool using yaxpeax instruction decoders"

[[bin]]
name = "yaxdis"
path = "src/main.rs"

[dependencies]
clap = "2.33"
hex = "0.4.0"
num-traits = "0.2.10"

# common interfaces for all yaxpeax decoders
yaxpeax-arch = { path = "../yaxpeax-arch" }

yaxpeax-arm = { path = "../arch/arm" }
yaxpeax-mips = { path = "../arch/mips" }
yaxpeax-msp430-mc = { path = "../arch/msp430" }
yaxpeax-pic17 = { path = "../arch/pic17" }
yaxpeax-pic18 = { path = "../arch/pic18" }
yaxpeax-pic24 = { path = "../arch/pic24" }
yaxpeax-x86 = { path = "../arch/x86" }