rings-node 0.12.0

Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![warn(missing_docs)]

//! Backend message types.
//!
//! The old closed `BackendMessage` enum and its `MessageHandler` dispatch have been
//! replaced by the namespaced [`Envelope`](crate::extension::ext::Envelope) wire and the
//! [`Extensions`](crate::extension::ext::Extensions) protocol registry. Only the SNARK
//! payload types remain here.

#[cfg(feature = "snark")]
pub mod snark;