pxl8/pxl8d/Cargo.toml

41 lines
698 B
TOML
Raw Normal View History

[package]
2026-01-25 09:26:30 -06:00
name = "pxl8d"
version = "0.1.0"
edition = "2024"
2026-01-25 09:26:30 -06:00
[lib]
name = "pxl8d"
[build-dependencies]
bindgen = "0.72"
2026-01-25 09:26:30 -06:00
cc = "1.2"
[dependencies]
libc = { version = "0.2", default-features = false }
libm = { version = "0.2", default-features = false }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", default-features = false, features = [
"Win32_System_Memory",
"Win32_System_Performance",
"Win32_System_Threading",
"Win32_Networking_WinSock",
] }
[[bin]]
2026-01-25 09:26:30 -06:00
name = "pxl8d"
path = "src/main.rs"
[profile.dev]
2026-01-25 09:26:30 -06:00
opt-level = 2
panic = "abort"
2026-01-25 09:26:30 -06:00
[profile.dev.package."*"]
opt-level = 3
[profile.release]
panic = "abort"
2026-01-25 09:26:30 -06:00
lto = true
codegen-units = 1
strip = true