elfloader/Cargo.toml

29 lines
590 B
TOML
Raw Permalink Normal View History

2023-12-07 21:24:40 +01:00
[package]
2024-01-28 18:20:01 +01:00
name = "elfloader"
2023-12-07 21:24:40 +01:00
version = "0.1.0"
edition = "2021"
2024-08-01 14:41:45 +02:00
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"
2024-01-28 18:20:01 +01:00
2024-08-01 14:41:45 +02:00
[target.'cfg(target_os = "linux")'.dependencies]
memfd-exec = "0.2.1"
2023-12-07 21:24:40 +01:00
2024-08-01 14:41:45 +02:00
[target.'cfg(target_os = "windows")'.dependencies]
2024-08-01 15:08:56 +02:00
winapi = { version = "0.3.9", features = [
"fileapi",
"namedpipeapi",
"processenv",
"memoryapi",
"processthreadsapi",
"winbase",
"winnt",
] }
2024-08-08 14:42:56 +02:00
[build-dependencies]
cc = "1"
bindgen = "0"