mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- add Azure RBAC condition interpreter and builtin evaluation in core (expressions, parser updates, evaluator, and test harness) - introduce comprehensive RBAC YAML test suites and coverage for i - action/suboperation - strings - numbers - bools - IP - GUID - dates - times - lists - quantifiers (ForAnyOfAnyValues, ForAllOfAllValues) - expose RBAC evaluation through FFI with an `rbac` feature flag enabled by default - add C# `RbacEngine` wrapper + P/Invoke entrypoint and document usage in C# README - expand C# tests to execute all RBAC YAML cases with per-case logging - wire test assets into C# test output and centralize YAML dependency versions Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
23 lines
395 B
Rust
23 lines
395 B
Rust
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
extern crate alloc;
|
|
|
|
mod allocator;
|
|
mod common;
|
|
mod compile;
|
|
mod compiled_policy;
|
|
mod effect_registry;
|
|
mod engine;
|
|
mod limits;
|
|
mod lock;
|
|
mod panic_guard;
|
|
#[cfg(feature = "rbac")]
|
|
mod rbac;
|
|
#[cfg(feature = "rvm")]
|
|
pub(crate) mod rvm;
|
|
mod schema_registry;
|
|
mod target_registry;
|