milestone: desktop path Phases 1-5

Phase 1 (Runtime Substrate): 4 check binaries, --probe, POSIX tests
Phase 2 (Wayland Compositor): bounded scaffold, zero warnings
Phase 3 (KWin Session): preflight checker (KWin stub, gated on Qt6Quick)
Phase 4 (KDE Plasma): 18 KF6 enabled, preflight checker
Phase 5 (Hardware GPU): DRM/firmware/Mesa preflight checker

Build: zero warnings, all scripts syntax-clean. Oracle-verified.
This commit is contained in:
2026-04-29 09:54:06 +01:00
parent b23714f542
commit 8acc73d774
508 changed files with 76526 additions and 396 deletions
+40
View File
@@ -0,0 +1,40 @@
[package]
name = "netstack"
description = "Network stack daemons"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "netstack"
path = "src/main.rs"
[dependencies]
redox_event.workspace = true
daemon = { path = "../daemon" }
redox_syscall = { workspace = true, features = ["std"] }
redox-log.workspace = true
libredox = { workspace = true, features = ["mkns"] }
anyhow.workspace = true
redox-scheme.workspace = true
scheme-utils = { path = "../scheme-utils" }
[dependencies.log]
workspace = true
default-features = false
features = ["release_max_level_warn"]
[dependencies.smoltcp]
version = "0.12.0"
default-features = false
features = [
"std",
"medium-ethernet", "medium-ip",
"proto-ipv4",
"socket-raw", "socket-icmp", "socket-udp", "socket-tcp", "socket-tcp-cubic",
"iface-max-addr-count-8",
"log"
]
#For debugging: "log", "verbose"
[lints]
workspace = true