river-core 0.1.10

Core library for River - decentralized group chat on Freenet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod chat_delegate;
pub mod crypto_values;
#[cfg(feature = "ecies")]
pub mod ecies;
pub mod key_derivation;
/// Legacy room-contract migration registry (freenet/river#292). Gated on the
/// `migration` feature so the room-contract / chat-delegate WASM builds (which
/// do not enable it) keep byte-identical WASM and stable keys.
#[cfg(feature = "migration")]
pub mod migration;
pub mod room_state;
pub mod util;
pub mod web_container;

pub use room_state::ChatRoomStateV1;
pub use web_container::WebContainerMetadata;