openlatch-client 0.1.18

OpenLatch runtime enforcement node — the capture-and-enforce client for the AI Operations Platform
pub mod auth;
pub mod cloud;
pub mod config;
#[cfg(feature = "crash-report")]
pub mod crash_report;
pub mod envelope;
pub mod error;
pub mod fs_secure;
pub mod hook_state;
pub mod install_state;
pub mod logging;
pub mod net;
pub mod path_compat;
// Gated exactly like `crash_report` above. The policy engine depends on
// `sha2` and `arc-swap`, both of which are `optional` and listed under
// `full-cli`; an ungated declaration would break
// `cargo build --release --no-default-features --bin openlatch-hook`, the
// hot-path dependency-budget build.
#[cfg(feature = "full-cli")]
pub mod policy;
pub mod privacy;
pub mod supervision;
pub mod telemetry;
pub mod update;