20 lines
544 B
TOML
20 lines
544 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-rs = { path = "../../overwatch-rs" }
|
|
overwatch-derive = { path = "../../overwatch-derive" }
|
|
tracing = "*"
|
|
async-trait = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
clap = { version = "4.0.18", features = ["derive"] }
|
|
rand = "0.8"
|