whyno-core 0.5.0

Permission check pipeline, fix engine, and state types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Core state types and check pipeline for the whyno permission debugger.
//!
//! Pure logic, zero I/O. All filesystem state is gathered externally
//! and passed in via [`state::SystemState`]. Check pipeline operates
//! deterministically on that struct.

#![deny(clippy::all)]
#![warn(clippy::pedantic)]
#![deny(missing_docs)]
#![deny(clippy::wildcard_enum_match_arm)]

pub mod checks;
pub mod fix;
pub mod operation;
pub mod state;

#[cfg(any(test, feature = "test-helpers"))]
pub mod test_helpers;