zamsync-network 1.2.2

TCP and mTLS transport for the ZamSync distributed sync engine
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod protocol;
pub mod tls;
pub mod transport;

pub use protocol::{decode, encode};
pub use tls::{
    generate_credentials, install_crypto_provider, sign_node_cert, GeneratedCredentials,
    SignedNodeCredentials, TlsConfig,
};
pub use transport::{TcpPeerTransport, TcpTransport, TlsPeerTransport, TlsTcpTransport};