pub fn run_probe_pack(probes: &[ChallengeProbe]) -> ProbePackReportExpand description
Run a probe pack against the default V1 classifier and return a report.
ยงExample
use stygian_charon::probe::{run_probe_pack, challenge_probe_pack};
let report = run_probe_pack(&challenge_probe_pack());
assert!(report.all_passed, "probe pack regressions: {:?}", report.failures());