From 825eabe868163189d371901ecfe27b4a3d0c9e97 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 12 Jan 2020 15:03:09 -0800 Subject: add *extremely* poor ffi bindings for x86 decoders this is specifically to support a disas-bench integration, for now --- ffi/Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ffi/Cargo.toml (limited to 'ffi/Cargo.toml') diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml new file mode 100644 index 0000000..ff1a4c0 --- /dev/null +++ b/ffi/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "yaxpeax_x86_ffi" +version = "0.0.1" +authors = ["iximeow "] +edition = "2018" + +[dependencies] +yaxpeax-x86 = { path = "../" } +yaxpeax-arch = { path = "../../../yaxpeax-arch" } + +[lib] +name = "yaxpeax_x86_ffi" +path = "src/lib.rs" +crate-type = ["staticlib"] + +[profile.release] +opt-level = 3 +lto = "fat" + -- cgit v1.1