diff options
author | iximeow <me@iximeow.net> | 2024-06-24 15:14:16 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-24 15:14:16 -0700 |
commit | 6a5ea107475284756070614a566970fbb383c4e6 (patch) | |
tree | ffbe8e173c85e3c70c241be01c61dc27c85322d1 | |
parent | 016583f3f237938816a819a882510e9a57a141ad (diff) |
add missing feature flag to real-mode ffi library
ffi/ still needs... much more work
-rw-r--r-- | ffi/real_mode/Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ffi/real_mode/Cargo.toml b/ffi/real_mode/Cargo.toml index c079e0e..03b5573 100644 --- a/ffi/real_mode/Cargo.toml +++ b/ffi/real_mode/Cargo.toml @@ -11,4 +11,9 @@ yaxpeax-arch = { version = "0.3.1", default-features = false } [lib] name = "yaxpeax_x86_ffi_real_mode" path = "src/lib.rs" -crate-type = ["staticlib"] +crate-type = ["staticlib", "cdylib"] + +[features] +default = ["fmt"] + +fmt = ["yaxpeax-x86/fmt"] |