ef3dd8b1fd
Update all active (non-archived) doc references from Linux 7.0 to Linux 7.1. The reference tree at local/reference/linux-7.1/ already exists; the docs were lagging behind. Files touched: AGENTS.md — reference path and git fetch command CHANGELOG.md — device ID source note local/docs/IMPLEMENTATION-MASTER-PLAN.md — source-of-truth path x2 local/docs/CPU-DMA-IRQ-MSI-SCHEDULER-FIX-PLAN.md — source-of-truth local/docs/DRM-MODERNIZATION-EXECUTION-PLAN.md — quirk extraction note local/docs/QUIRKS-AUDIT.md — storage quirk table note local/docs/QUIRKS-SYSTEM.md — storage quirk mining note Archived docs (local/docs/archived/*) are preserved as-is — they represent historical state and are not the planning authority.
22 lines
723 B
TOML
22 lines
723 B
TOML
[package]
|
|
name = "uhcid"
|
|
version = "0.2.5"
|
|
edition = "2024"
|
|
description = "UHCI USB 1.1 host controller driver for Red Bear OS"
|
|
|
|
[[bin]]
|
|
name = "uhcid"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
usb-core = { path = "../../usb-core/source" }
|
|
syscall = { package = "redox_syscall", path = "../../../../../local/sources/syscall", features = ["std"] }
|
|
redox-driver-sys = { path = "../../redox-driver-sys/source" }
|
|
libredox = { path = "../../../../../local/sources/libredox", features = ["call", "std"] }
|
|
log = "0.4"
|
|
|
|
[patch.crates-io]
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|