diff options
author | iximeow <me@iximeow.net> | 2021-07-04 15:21:01 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-04 15:21:01 -0700 |
commit | bb2870e56d6c9a0a7b96be8287193a753e3a4391 (patch) | |
tree | 20cbc157d57ad6fc57a18392a3eec4a4f6b8d57c /ffi/multiarch/Cargo.toml | |
parent | 6f91a743a8e6bf720abdb0748bc6755f280b59de (diff) |
add ffi wrappers for real mode, protected mode, and a multiarch build
Diffstat (limited to 'ffi/multiarch/Cargo.toml')
-rw-r--r-- | ffi/multiarch/Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ffi/multiarch/Cargo.toml b/ffi/multiarch/Cargo.toml index 370d39c..1632996 100644 --- a/ffi/multiarch/Cargo.toml +++ b/ffi/multiarch/Cargo.toml @@ -11,4 +11,9 @@ yaxpeax-arch = { version = "0.1.0", default-features = false } [lib] name = "yaxpeax_x86_ffi_multiarch" path = "src/lib.rs" -crate-type = ["staticlib"] +crate-type = ["staticlib", "cdylib"] + +[features] +default = ["fmt"] + +fmt = ["yaxpeax-x86/fmt"] |