antigen-macros 0.3.0

Procedural macros for the antigen crate. Not for direct use; use antigen instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Adversarial fixture: rollback_due_within_minutes = 0 must be rejected.
//! Zero deadline degrades the time-bound discipline.

use antigen_macros::triage_commit;

#[triage_commit(
    triage_decision = TriageDecision::Red,
    rollback_target = "abc1234",
    triaged_by = "navigator",
    rationale = "twenty-character-rationale-text-here",
    rollback_due_within_minutes = 0,
)]
fn _triage_marker() {}

fn main() {}