Giacomo Pasini cc20ecc918
Add waku-chat example (#1)
* add waku-chat example

* clippy happy

* update dependencies

* remove unneeded tokio features

* use separate thread for stdin

* only build on linux

Co-authored-by: Giacomo Pasini <giacomo@status.im>
2022-10-24 13:21:39 +02:00

20 lines
538 B
TOML

[package]
name = "waku-chat"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["rt"] }
waku = { git = "https://github.com/waku-org/waku-rust-bindings" }
serde = "1"
bincode = "1"
overwatch = { path = "../../overwatch" }
overwatch-derive = { path = "../../overwatch-derive" }
tracing = "*"
async-trait = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.0.18", features = ["derive"] }
rand = "0.8"