mirror of
https://github.com/logos-messaging/logos-messaging-rust-bindings.git
synced 2026-01-02 14:03:12 +00:00
* update nwaku vendor to v0.33.1 * build.rs: add negentropy dependency and cmdCount cmdLine dependencies * fix: call waku_setup when instantiating waku_new * Properly decode a Vec<Multiaddr> * First commit tic-tac-toe * adding some simple game logic to coordinate the turns a little * some logic to panic if a proper event callback hasn't been set * restoring back the type state pattern introduced by Richard * new PubsubTopic type * fix clippy issues --------- Co-authored-by: Richard Ramos <info@richardramos.me>
18 lines
462 B
TOML
18 lines
462 B
TOML
[package]
|
|
name = "tic-tac-toe-gui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
waku = { path = "../../waku-bindings", package = "waku-bindings" }
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
ark-std = "0.4"
|
|
ctrlc = "3.2.4"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = "0.6" # for utility functions if needed
|
|
egui = "0.22"
|
|
eframe = "0.22"
|
|
secp256k1 = { version = "0.26", features = ["rand", "recovery", "serde"] }
|
|
|