rings-core 0.1.0

Chord DHT implementation with ICE
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(feature = "wasm"))]
mod default;
#[cfg(feature = "wasm")]
mod wasm;

#[cfg(feature = "wasm")]
pub use wasm::CbChannel as Channel;

#[cfg(not(feature = "wasm"))]
pub use default::AcChannel as Channel;