cedarling 0.0.58

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
// 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.

mod trusted_issuer_validator;
mod validator;
mod validator_cache;

pub(crate) use trusted_issuer_validator::TrustedIssuerError;
pub(super) use trusted_issuer_validator::{TrustedIssuerValidator, validate_required_claims};
pub(crate) use validator::ValidateJwtError;
pub(super) use validator::*;
pub(super) use validator_cache::*;