mirror of
https://github.com/Noratrieb/portability.git
synced 2026-01-14 07:55:00 +01:00
19 lines
599 B
TOML
19 lines
599 B
TOML
[package]
|
|
name = "portability"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bitflags = { version = "2.8.0", features = ["bytemuck"] }
|
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
|
cfg-if = "1.0.0"
|
|
memmap2 = "0.9.5"
|
|
naked-function = "0.1.5"
|
|
tracing = { version = "0.1.41", features = ["attributes"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.59.0", features = ["Win32_System_Memory", "Win32_Security", "Win32_System_SystemInformation"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.169"
|