| [package] |
| name = "dcutr-example" |
| version = "0.1.0" |
| edition = "2021" |
| publish = false |
| license = "MIT" |
|
|
| [package.metadata.release] |
| release = false |
|
|
| [dependencies] |
| clap = { version = "4.5.6", features = ["derive"] } |
| futures = { workspace = true } |
| futures-timer = "3.0" |
| libp2p = { path = "../../libp2p", features = [ "dns", "dcutr", "identify", "macros", "noise", "ping", "quic", "relay", "rendezvous", "tcp", "tokio", "yamux"] } |
| log = "0.4" |
| tokio = { workspace = true, features = ["macros", "net", "rt", "signal"] } |
| tracing = { workspace = true } |
| tracing-subscriber = { workspace = true, features = ["env-filter"] } |
|
|
| [lints] |
| workspace = true |
|
|