mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
19 lines
440 B
TOML
19 lines
440 B
TOML
[package]
|
|
name = "ping-example"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish = false
|
|
license = "MIT"
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[dependencies]
|
|
futures = { workspace = true }
|
|
libp2p = { path = "../../libp2p", features = ["noise", "ping", "tcp", "tokio", "yamux", "rsa"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
[lints]
|
|
workspace = true
|