Skip to main content

aranya_policy_compiler/
lib.rs

1//! The Aranya policy compiler.
2//!
3//! See [the policy book](https://aranya-project.github.io/policy-book/) for more information on
4//! the policy language.
5
6#![cfg_attr(docsrs, feature(doc_cfg))]
7
8pub mod compile;
9mod tests;
10mod tracer;
11pub mod validate;
12
13pub use compile::*;
14pub use tracer::*;