logstone 0.1.0

Tamper-evident audit logging for B2B SaaS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Logstone - Tamper-evident audit logging for B2B SaaS
///
/// This SDK is currently in development.

/// Represents an audit event to be logged
pub struct AuditEvent {
    pub actor: String,
    pub action: String,
    pub resource: String,
    pub resource_id: String,
}

/// Current version of the Logstone SDK
pub fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}