[package]
edition = "2021"
rust-version = "1.81"
name = "dyncvoke-spoof"
version = "0.1.1"
authors = ["5mukx"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Call stack spoofing primitives for Dyncvoke (synthetic and desync)"
homepage = "https://git.smukx.site/smukx/Dyncvoke"
documentation = "https://docs.rs/dyncvoke-spoof"
readme = false
keywords = [
"windows",
"spoof",
"callstack",
"dyncvoke",
]
categories = [
"os::windows-apis",
"no-std",
]
license = "MIT"
repository = "https://git.smukx.site/smukx/Dyncvoke"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
desync = []
[lib]
name = "spoof"
path = "src/lib.rs"
doctest = false
[[example]]
name = "canary"
path = "examples/canary.rs"
[[example]]
name = "spoofed_alloc"
path = "examples/spoofed_alloc.rs"
[[test]]
name = "desync_syscall"
path = "tests/desync_syscall.rs"
[[test]]
name = "obfstr_canary"
path = "tests/obfstr_canary.rs"
[[test]]
name = "synthetic_function"
path = "tests/synthetic_function.rs"
[[test]]
name = "synthetic_syscall"
path = "tests/synthetic_syscall.rs"
[dependencies.bitfield]
version = "0.19"
[dependencies.data]
version = "0.1.1"
package = "dyncvoke-data"
[dependencies.dyncvoke_core]
version = "0.1.1"
package = "dyncvoke-core"
[dependencies.memchr]
version = "2.7"
default-features = false
[build-dependencies.cc]
version = "1.2"
[build-dependencies.nasm-rs]
version = "0.3"