mirror of
https://github.com/logos-messaging/logos-delivery-rust-bindings.git
synced 2026-05-04 12:43:07 +00:00
* Add modules * Implemented waku config struct * Implemented waku management functions * Use optional config in waku_new * Added config docs * Fix tests * Dbg error on gh actions * Added fail result to dbg * Removed gh actions dbg * NodeConfig -> WakuNodeConfig * Removed duplicated test * Implemented safety layer on top of node * Add exclusive running test * Use static instead of const for global flag * Do not allow for double initialization * Update submodule to latest master commit with responses fixes * Merge tests
15 lines
331 B
TOML
15 lines
331 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]
|
|
hex = "0.4"
|
|
libsecp256k1 = "0.7"
|
|
multiaddr = "0.14"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
waku-sys = { path = "../waku-sys" }
|