|
|
[package] |
|
|
name = "libp2p-swarm-test" |
|
|
version = "0.4.0" |
|
|
edition = "2021" |
|
|
rust-version = { workspace = true } |
|
|
license = "MIT" |
|
|
description = "Test framework for code building on top of libp2p-swarm" |
|
|
repository = "https://github.com/libp2p/rust-libp2p" |
|
|
keywords = ["peer-to-peer", "libp2p", "networking"] |
|
|
categories = ["network-programming", "asynchronous"] |
|
|
|
|
|
|
|
|
|
|
|
[dependencies] |
|
|
async-trait = "0.1.80" |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-identity = { workspace = true, features = ["rand"] } |
|
|
libp2p-plaintext = { workspace = true } |
|
|
libp2p-swarm = { workspace = true, features = ["async-std"] } |
|
|
libp2p-tcp = { workspace = true, features = ["async-io"] } |
|
|
libp2p-yamux = { workspace = true } |
|
|
futures = { workspace = true } |
|
|
rand = "0.8.5" |
|
|
tracing = { workspace = true } |
|
|
futures-timer = "3.0.3" |
|
|
|
|
|
[lints] |
|
|
workspace = true |
|
|
|