-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 877 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[workspace]
members = [".", "examples/dcutr", "examples/chat", "examples/autonat"]
[package]
name = "boot-node"
version = "0.5.1"
authors = ["Calimero Limited <info@calimero.network>"]
edition = "2021"
repository = "https://github.com/calimero-network/boot-node"
license = "MIT OR Apache-2.0"
[dependencies]
camino = "1.1.6"
clap = { version = "4.5.4", features = ["derive", "env"] }
eyre = "0.6.12"
futures-util = "0.3.30"
libp2p = { version = "0.53.2", features = [
"autonat",
"identify",
"kad",
"macros",
"noise",
"ping",
"quic",
"rendezvous",
"relay",
"tokio",
"tcp",
"tls",
"yamux",
] }
multiaddr = "0.18.1"
serde = "1.0.196"
serde_json = "1.0.113"
tokio = { version = "1.35.1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }