regorus 0.10.1

A fast, lightweight Rego (OPA policy language) interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Azure Policy language support: AST types, aliases, and string utilities.

#[allow(clippy::pattern_type_mismatch)]
pub mod aliases;
pub mod ast;
#[cfg(feature = "rvm")]
pub mod compiler;
pub mod expr;
pub mod parser;
pub mod strings;