tx5_signal/
lib.rs

1#![deny(missing_docs)]
2#![deny(unsafe_code)]
3#![doc = tx5_core::__doc_header!()]
4//! # tx5-signal
5//!
6//! Holochain webrtc signal client.
7//! This is a thin wrapper around an SBD e2e crypto client.
8
9use std::io::{Error, Result};
10use std::sync::{Arc, Weak};
11
12pub use sbd_e2e_crypto_client::{PubKey, SbdClientConfig};
13
14mod wire;
15pub use wire::*;
16
17mod conn;
18pub use conn::*;
19
20#[cfg(test)]
21mod tests;