From 4357d69df98aa1b1de5f94a62fcdc77f6fa1a8c9 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 11 Jan 2020 15:20:49 -0800 Subject: good morning --- Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3076334 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "yaxpeax-dis" +version = "0.1.0" +authors = ["iximeow "] +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" } -- cgit v1.1