stream world data from pxl8d to pxl8

This commit is contained in:
asrael 2026-01-25 09:26:30 -06:00
parent 39ee0fefb7
commit a71a9840b2
55 changed files with 5290 additions and 2131 deletions

40
pxl8d/Cargo.toml Normal file
View file

@ -0,0 +1,40 @@
[package]
name = "pxl8d"
version = "0.1.0"
edition = "2024"
[lib]
name = "pxl8d"
[build-dependencies]
bindgen = "0.72"
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]]
name = "pxl8d"
path = "src/main.rs"
[profile.dev]
opt-level = 2
panic = "abort"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
strip = true