commonware-p2p 2026.4.0

Communicate with authenticated peers over encrypted connections.
Documentation
1
2
3
4
5
6
7
8
9
10
mod actor;
mod ingress;

pub use actor::Actor;
pub use ingress::{Message, Messenger};

/// Config for an [Actor].
pub struct Config {
    pub mailbox_size: usize,
}