mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
ab4c70b379
* update to latest env_logger * roundabout dependency update * Update to latest vengen * Update rand to 0.6 * Update to latest rng shuffle API * Roundabout update of dependencies * Update rustc_hex * Update wasm * Fix logging setup in tests * revert to fix test
29 lines
762 B
TOML
29 lines
762 B
TOML
[package]
|
|
description = "libp2p implementation of the ethcore network library"
|
|
edition = "2018"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "substrate-network-libp2p"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bytes = "0.4"
|
|
error-chain = { version = "0.12", default-features = false }
|
|
fnv = "1.0"
|
|
futures = "0.1"
|
|
libp2p = { version = "0.2", default-features = false, features = ["secio-rsa", "secio-secp256k1", "libp2p-websocket"] }
|
|
parking_lot = "0.7.1"
|
|
lazy_static = "1.2"
|
|
log = "0.4"
|
|
rand = "0.6"
|
|
serde = "1.0.70"
|
|
serde_derive = "1.0.70"
|
|
serde_json = "1.0.24"
|
|
smallvec = "0.6"
|
|
tokio = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio-timer = "0.2"
|
|
unsigned-varint = { version = "0.2.1", features = ["codec"] }
|
|
void = "1.0"
|