cedarling 0.0.64

The Cedarling: a high-performance local authorization service powered by the Rust Cedar Engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This software is available under the Apache-2.0 license.
// See https://www.apache.org/licenses/LICENSE-2.0.txt for full text.
//
// Copyright (c) 2024, Gluu, Inc.

//! # Init Engine
//! Part of Cedarling that main purpose is:
//! - read boostrap properties
//! - load Cedar Policies
//! - get keys for JWT validation

pub(crate) mod authz_builder;
pub(crate) mod policy_store;
pub(crate) mod policy_store_refresh;
pub(crate) mod service_config;
pub(crate) mod service_factory;

pub(crate) use service_factory::ServiceFactory;