From 84fe5d175667518a925e181a50c0ebea70eaed5a Mon Sep 17 00:00:00 2001 From: lockbox Date: Thu, 15 Jun 2023 19:19:39 -0400 Subject: [PATCH] expose ffi in rust bindings --- bindings/rust/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/rust/src/lib.rs b/bindings/rust/src/lib.rs index 5b4e7d33..c67dd4cf 100644 --- a/bindings/rust/src/lib.rs +++ b/bindings/rust/src/lib.rs @@ -34,10 +34,10 @@ extern crate std; #[macro_use] pub mod unicorn_const; +pub mod ffi; // lets consumers call ffi if desired mod arm; mod arm64; -mod ffi; mod m68k; mod mips; mod ppc;