actr-platform-native 0.3.1

Native platform provider for Actor-RTC: SQLite storage, ed25519-dalek crypto, filesystem operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # actr-platform-native
//!
//! Native platform provider for Actor-RTC.
//!
//! Implements `PlatformProvider` using:
//! - **Storage**: SQLite via `ActorStore`
//! - **Crypto**: ed25519-dalek + sha2
//! - **Filesystem**: tokio::fs

pub mod crypto;
pub mod platform;

pub use crypto::NativeCryptoProvider;
pub use platform::NativePlatformProvider;