acp 0.1.0

An implementation of [access control policy](https://solid.github.io/authorization-panel/acp-specification/) concepts and engine for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! An implementation of [access control policy](https://solid.github.io/authorization-panel/acp-specification/) concepts and engine for rust.
//!

#![warn(missing_docs)]
#![deny(unused_qualifications)]

pub mod model;

#[cfg(feature = "engine")]
pub mod attribute_match_svc;
#[cfg(feature = "engine")]
pub mod engine;