Skip to main content

act_policy/
lib.rs

1//! Capability policy decision core (PDP) for ACT hosts.
2//!
3//! Pure, synchronous, wasm-portable: `resolve` computes the effective
4//! ceiling once per instantiation; the matchers classify each operation.
5//! Host-only async consent helpers live behind the `host` feature.
6
7pub mod ceilings;
8pub mod decision;
9pub mod effective;
10pub mod fs_matcher;
11pub mod grant;
12pub mod net;
13pub mod provider;
14pub mod providers;
15
16#[cfg(feature = "host")]
17pub mod consent;
18
19/// The common policy decision type, returned by every provider's `classify`.
20pub use decision::Decision;