7c7399e0a6
Add guard-recipes.sh with four modes: - --verify: check all local/recipes have correct symlinks into recipes/ - --fix: repair broken symlinks (run before builds) - --save-all: snapshot all recipe.toml into local/recipes/ - --restore: recreate all symlinks from local/recipes/ (run after sync-upstream) Wired into apply-patches.sh (post-patch) and sync-upstream.sh (post-sync). This prevents the build system from deleting recipe files during cargo cook, make distclean, or upstream source refresh.
13 lines
221 B
TOML
13 lines
221 B
TOML
[package]
|
|
name = "usb-core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Shared USB types and primitives for Red Bear host controller drivers"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[lib]
|
|
path = "source/src/lib.rs"
|