[package]
edition = "2021"
name = "libsui"
version = "0.13.0"
authors = ["the Deno authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A injection tool for executable formats (ELF, PE, Mach-O) that allows you to embed files into existing binary and extract them at runtime"
readme = "README.md"
license = "MIT"
repository = "https://github.com/denoland/sui"
[lib]
name = "libsui"
path = "lib.rs"
[[bin]]
name = "sui"
path = "cli.rs"
[[test]]
name = "exec"
path = "tests/exec.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "rtld_default"
path = "tests/rtld_default.rs"
[dependencies.editpe]
version = "0.1.0"
default-features = false
[dependencies.image]
version = "0.25"
features = [
"bmp",
"ico",
"png",
]
default-features = false
[dependencies.libc]
version = "0.2"
[dependencies.object]
version = "=0.36.3"
features = [
"build",
"read_core",
"elf",
"std",
]
default-features = false
[dependencies.sha2]
version = "0.10"
[dependencies.zerocopy]
version = "0.7"
features = ["derive"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.48.0"
features = [
"Win32_System",
"Win32_System_LibraryLoader",
"Win32_Foundation",
]