elfloader/Cargo.toml

17 lines
413 B
TOML
Raw 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]
winapi = "0.3.9"