elfloader/Cargo.toml
2024-08-08 14:42:56 +02:00

28 lines
590 B
TOML
Executable file

[package]
name = "elfloader"
version = "0.1.0"
edition = "2021"
description = "elfloader"
authors = ["davidontop <me@davidon.top>"]
readme = "README.md"
documentation = "https://docs.rs/elfloader"
license = "MIT"
repository = "https://git.davidon.top/public/elfloader.git"
[target.'cfg(target_os = "linux")'.dependencies]
memfd-exec = "0.2.1"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = [
"fileapi",
"namedpipeapi",
"processenv",
"memoryapi",
"processthreadsapi",
"winbase",
"winnt",
] }
[build-dependencies]
cc = "1"
bindgen = "0"