Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement custom stream protocol, perform catchup over stream protocol #13

Merged
merged 8 commits into from
Jun 19, 2024
Merged
70 changes: 69 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions examples/chat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "chat-example"
version = "0.3.0"
version = "0.4.0"
authors = ["Calimero Limited <info@calimero.network>"]
edition = "2021"
repository = "https://github.com/calimero-network/boot-node"
license = "MIT OR Apache-2.0"

[dependencies]
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive", "env"] }
eyre = "0.6.12"
futures-util = { version = "0.3.30" }
libp2p = { version = "0.53.2", features = [
"dcutr",
"dns",
Expand All @@ -27,15 +29,21 @@ libp2p = { version = "0.53.2", features = [
"tls",
"yamux",
] }
libp2p-stream = "0.1.0-alpha.1"
multiaddr = "0.18.1"
owo-colors = "4.0.0"
serde = "1.0.196"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = [
"io-std",
"macros",
"rt",
"rt-multi-thread",
] }
tokio-util = { version = "0.7.11", features = ["codec", "compat"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }

[dev-dependencies]
tokio-test = { version = "0.4.4" }
Loading