synheart-sensor-agent 0.2.2

Privacy-first PC background sensor for behavioral research
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Transparency module for the Synheart Sensor Agent.
//!
//! Provides tools for tracking and exposing what data the agent collects,
//! supporting user trust and regulatory compliance.
//!
//! - [`TransparencyLog`] records per-window collection statistics
//! - [`TransparencyStats`] exposes aggregated statistics
//! - `create_shared_log` / `create_shared_log_with_persistence` create
//!   thread-safe log instances

/// Transparency logging and statistics.
pub mod log;

// Re-export commonly used types
pub use log::{
    create_shared_log, create_shared_log_with_persistence, SharedTransparencyLog, TransparencyLog,
    TransparencyStats,
};