mirror of
https://github.com/logos-messaging/logos-messaging-rust-bindings.git
synced 2026-01-02 14:03:12 +00:00
* bump nwaku to the current master branch ( commit: 625c8ee5 ) * make the waku crate to behave tokio-asynchronously * use of store * use of lightpush and filter * add waku-bindings/src/general/messagehash.rs * add waku-bindings/src/general/time.rs * add waku-bindings/src/general/waku_decode.rs * add WakuEvent management (WakuMessage, ConnectionChange, TopicHealthChange.) * add waku-bindings/src/macros.rs
24 lines
802 B
Rust
24 lines
802 B
Rust
//! # Waku
|
|
//!
|
|
//! Implementation on top of [`waku-bindings`](https://rfc.vac.dev/spec/36/)
|
|
pub mod general;
|
|
mod macros;
|
|
pub mod node;
|
|
|
|
// Re-export the LibwakuResponse type to make it accessible outside this module
|
|
pub use general::libwaku_response::LibwakuResponse;
|
|
|
|
// Required so functions inside libwaku can call RLN functions even if we
|
|
// use it within the bindings functions
|
|
#[allow(clippy::single_component_path_imports)]
|
|
#[allow(unused)]
|
|
use rln;
|
|
|
|
pub use node::{
|
|
waku_create_content_topic, waku_new, Initialized, Key, Multiaddr, PublicKey, RLNConfig,
|
|
Running, SecretKey, WakuEvent, WakuMessageEvent, WakuNodeConfig, WakuNodeHandle,
|
|
};
|
|
|
|
pub use general::contenttopic::{Encoding, WakuContentTopic};
|
|
pub use general::{messagehash::MessageHash, Result, WakuMessage, WakuMessageVersion};
|