mirror of
https://github.com/logos-messaging/logos-messaging-rust-bindings.git
synced 2026-01-07 08:23:08 +00:00
* Wrapped lightpush * Optional signing key on relay a/symmetric publish * Added lightpush docs * Implemented filter methods wrappers * Implemented store methods wrappers * WakuHandle docs * Plumbing filter, lightpush and store into node * Callback RwLock -> Mutex * Removed wrong todo * Docs modules titles and links * Missing link * Implemented message decoding * Decrypt docs header * Added message and payload todos * Added missing structs fields exposures and constructors * Payload as base64 * Deserialize base64 encoded strings Use proper types on payload * Added MessageIndex type doc header * Added missing documentation * Added main lib header doc
19 lines
432 B
TOML
19 lines
432 B
TOML
[package]
|
|
name = "waku"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
aes-gcm = { version = "0.10", features = ["aes"] }
|
|
base64 = "0.13"
|
|
hex = "0.4"
|
|
libsecp256k1 = "0.7"
|
|
multiaddr = "0.14"
|
|
once_cell = "1.15"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sscanf = "0.3"
|
|
waku-sys = { path = "../waku-sys" }
|