2022-04-16 14:40:04 +03:00
|
|
|
[package]
|
|
|
|
name = "unicorn-engine"
|
2023-02-04 08:00:58 +03:00
|
|
|
version = "2.0.2"
|
2022-04-16 14:40:04 +03:00
|
|
|
authors = ["Ziqiao Kong", "Lukas Seidel"]
|
|
|
|
documentation = "https://github.com/unicorn-engine/unicorn/wiki"
|
|
|
|
edition = "2021"
|
|
|
|
license = "GPL-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/unicorn-engine/unicorn"
|
|
|
|
description = "Rust bindings for the Unicorn emulator with utility functions"
|
|
|
|
build = "bindings/rust/build.rs"
|
|
|
|
links = "unicorn"
|
|
|
|
# use `cargo publish --list` to see files to be included
|
|
|
|
# the resulting list what cargo uses to check for out-of-date files during build
|
|
|
|
exclude = [
|
|
|
|
"/docs",
|
|
|
|
"/bindings/dotnet",
|
|
|
|
"/bindings/go",
|
|
|
|
"/bindings/haskell",
|
|
|
|
"/bindings/java",
|
|
|
|
"/bindings/pascal",
|
|
|
|
"/bindings/python",
|
|
|
|
"/bindings/ruby",
|
|
|
|
"/bindings/vb6",
|
2023-03-23 22:16:18 +03:00
|
|
|
"/bindings/zig",
|
2022-04-16 14:40:04 +03:00
|
|
|
"/samples",
|
|
|
|
"/tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "bindings/rust/src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-18 13:35:33 +03:00
|
|
|
bitflags = "2.3.3"
|
2022-04-16 14:40:04 +03:00
|
|
|
libc = "0.2"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-05-06 15:46:50 +03:00
|
|
|
cc = { version = "1.0" }
|
|
|
|
cmake = { version = "0.1" }
|
|
|
|
pkg-config = { version = "0.3" }
|
2022-04-16 14:40:04 +03:00
|
|
|
|
|
|
|
[features]
|
2022-12-29 09:43:54 +03:00
|
|
|
default = ["arch_all"]
|
2023-03-23 22:16:18 +03:00
|
|
|
dynamic_linkage = []
|
2022-12-29 09:43:54 +03:00
|
|
|
arch_all = ["arch_x86", "arch_arm", "arch_aarch64", "arch_riscv", "arch_mips", "arch_sparc", "arch_m68k", "arch_ppc", "arch_s390x", "arch_tricore"]
|
|
|
|
arch_x86 = []
|
|
|
|
arch_arm = []
|
|
|
|
arch_aarch64 = []
|
|
|
|
arch_riscv = []
|
|
|
|
arch_mips = []
|
|
|
|
arch_sparc = []
|
|
|
|
arch_m68k = []
|
|
|
|
arch_ppc = []
|
|
|
|
arch_s390x = []
|
2023-02-04 08:00:58 +03:00
|
|
|
arch_tricore = []
|