From 95ab24f2b34b8d11296350129589bc314aacf482 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 31 Dec 2022 13:11:21 -0800 Subject: initial commit (full owl) --- Cargo.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..98079c9 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "yaxpeax-eval" +version = "0.0.1" +authors = ["iximeow "] +license = "0BSD" +edition = "2021" +keywords = ["disassembly", "disassembler"] +repository = "https://git.iximeow.net/yaxpeax-eval/about/" +description = "batch eval tool for machine code" +readme = "README.md" + +[[bin]] +name = "yaxeval" +path = "src/main.rs" + +[dependencies] +nix = { version = "0.26.1", features = ["mman", "process", "ptrace"] } +clap = { version = "3", features = ["derive"] } +hex = "0.4.0" +num-traits = "0.2.10" +itertools = "0.10.1" +libc = "0.2.139" + +# common interfaces for all yaxpeax decoders +yaxpeax-arch = { version = "0.2.4" , default-features = false, features = ["std"] } + +yaxpeax-x86 = { version = "1.1.5", default-features = false, features = ["fmt", "std"] } -- cgit v1.1