aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 564ce9f88da4108fc41e0f6793bc8983821230cb (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "yaxpeax-dis"
version = "0.2.9"
authors = ["iximeow <me@iximeow.net>"]
license = "0BSD"
edition = "2018"
keywords = ["disassembly", "disassembler"]
repository = "https://git.iximeow.net/yaxpeax-dis/about/"
description = "disassembly tool using yaxpeax instruction decoders"
readme = "README.md"

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

[patch.crates-io]
yaxpeax-arch-02 = { package = "yaxpeax-arch", path = "/toy/yaxpeax/yaxpeax-arch/" }

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

# common interfaces for all yaxpeax decoders
yaxpeax-arch-02 = { package = "yaxpeax-arch", version = "0.2.4" , default-features = false, features = ["std"] }
yaxpeax-arch-01 = { package = "yaxpeax-arch", version = "0.0.5" , default-features = false }

yaxpeax-arm = { version = "0.2.3", default-features = false, features = ["std"] }
yaxpeax-avr = { version = "0.1.0" }
yaxpeax-m16c = { version = "0.1.0" }
yaxpeax-mips = { version = "0.1.0" }
yaxpeax-msp430 = { version = "0.1.0", path = "/toy/yaxpeax/arch/msp430" }
yaxpeax-lc87 = { version = "1.0.0" }
yaxpeax-pic17 = { version = "0.1.0" }
yaxpeax-pic18 = { version = "0.1.0" }
yaxpeax-x86 = { version = "1.1.3", default-features = false, features = ["fmt", "std"] }
yaxpeax-ia64 = { version = "0.2.1", path = "/toy/yaxpeax/arch/ia64" }
yaxpeax-superh = { version = "0.1.0" }
yaxpeax-6502 = { version = "0.0.1" }