mirror of
https://github.com/AtHeartEngineering/rust-libp2p-dandelion.git
synced 2026-01-09 20:18:20 -05:00
- Introduce `rsa` feature flag to `libp2p-core`. - Expose `rsa` feature in `libp2p`. - Add `rsa` feature to `libp2p` `default`.
36 lines
1012 B
TOML
36 lines
1012 B
TOML
[package]
|
|
name = "libp2p-swarm"
|
|
edition = "2021"
|
|
rust-version = "1.56.1"
|
|
description = "The libp2p swarm"
|
|
version = "0.39.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
keywords = ["peer-to-peer", "libp2p", "networking"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
[dependencies]
|
|
either = "1.6.0"
|
|
fnv = "1.0"
|
|
futures = "0.3.1"
|
|
futures-timer = "3.0.2"
|
|
instant = "0.1.11"
|
|
libp2p-core = { version = "0.36.0", path = "../core", default-features = false }
|
|
log = "0.4"
|
|
pin-project = "1.0.0"
|
|
rand = "0.7"
|
|
smallvec = "1.6.1"
|
|
thiserror = "1.0"
|
|
void = "1"
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.6.2", features = ["attributes"] }
|
|
env_logger = "0.9"
|
|
libp2p = { path = "../", default-features = false, features = ["identify", "ping", "plaintext", "yamux"] }
|
|
libp2p-mplex = { path = "../muxers/mplex" }
|
|
libp2p-noise = { path = "../transports/noise" }
|
|
libp2p-tcp = { path = "../transports/tcp" }
|
|
quickcheck = "0.9.0"
|
|
rand = "0.7.2"
|