app
Adom Concur
Public Made by Adomby adom
Cross-source consensus check for chip libraries — scores whether the KiCad, EAGLE, and Altium libraries AND the adom-ds2sf datasheet extraction all AGREE on pins, pads, names, and package, across seve
[package]
name = "adom-concur"
version = "1.0.1"
edition = "2021"
description = "Cross-source consensus check: compares ds2sf-extracted symbol+footprint against chip-fetcher's KiCad/EAGLE/Altium libraries. Emits a result.json with status (golden/divergent/unrecoverable) and tagged hints[] so chip-fetcher can decide whether to re-fetch a library or escalate to a human."
[[bin]]
name = "adom-concur"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
roxmltree = "0.20"
altium-pcblib = { path = "../altium-pcblib" }
altium-schlib = { path = "../altium-schlib" }
[profile.release]
opt-level = "z"
lto = "thin"
strip = true