gha_expression_proof/
lib.rs1mod ast;
8mod eval;
9mod lexer;
10mod model;
11mod parser;
12mod render;
13mod template;
14mod value;
15
16pub use eval::{
17 ContextBuilder, EvaluationOptions, JobStatus, evaluate_expression, evaluate_template,
18};
19pub use model::{Check, CheckStatus, EvaluationReceipt, ReceiptSummary, SchemaVersion, ToolInfo};
20pub use render::{OutputFormat, render_receipt};
21
22pub const TOOL_NAME: &str = "gha-expression-proof";
23pub const TOOL_VERSION: &str = env!("CARGO_PKG_VERSION");