release prep: rc.1 baseline and gating updates

This commit is contained in:
2026-03-02 15:54:55 -05:00
parent 97a42c8802
commit f43b2b24b6
168 changed files with 14708 additions and 982 deletions

View File

@@ -0,0 +1,15 @@
use bitdo_proto::pid_registry;
use std::collections::HashSet;
#[test]
fn pid_registry_contains_unique_pid_values() {
let mut seen = HashSet::new();
for row in pid_registry() {
assert!(
seen.insert(row.pid),
"duplicate pid in runtime registry: {:#06x} ({})",
row.pid,
row.name
);
}
}