aa2185152a
IMPLEMENTATION-MASTER-PLAN.md: - Updated Phase 2 Network Drivers to COMPLETE status - Added NETWORKING-IMPROVEMENT-PLAN.md to authority table - Comprehensive driver inventory (5 Ethernet, 7 storage, 4 USB, 4 GPU, etc.) - Linux 7.1 cross-references for every driver - Network stack completion summary (9,212 LoC, all protocols) - Updated e1000d/rtl8168d file statuses (was 'Truncated', now 'Complete') - Remaining smoltcp-dependent gaps documented Archived stale docs: - C7-STATUS.md → archived/ (KF6/Plasma migration, completed) - BUILD-TOOLS-PORTING-PLAN.md → archived/ (superseded) - 0.2.5-GRAPHICS-FREEZE-PLAN.md → archived/ (version-specific)
23 lines
714 B
TOML
23 lines
714 B
TOML
[package]
|
|
name = "redbear-ecmd"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "redbear-ecmd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|
|
xhcid = { path = "../../../../../local/sources/base/drivers/usb/xhcid" }
|
|
common = { path = "../../../../../local/sources/base/drivers/common" }
|
|
libredox = { path = "../../../../../local/sources/libredox", features = ["call", "std"] }
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|
|
|
|
[patch.crates-io]
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|