rust-libp2p/core/Cargo.toml

27 lines
628 B
TOML
Raw Normal View History

2017-04-08 18:26:05 +02:00
[package]
name = "libp2p-core"
2017-04-08 18:26:05 +02:00
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
2018-05-24 00:54:08 +02:00
bs58 = "0.2.0"
2017-11-02 11:58:02 +01:00
bytes = "0.4"
fnv = "1.0"
log = "0.4"
multiaddr = { path = "../multiaddr" }
multihash = { path = "../multihash" }
2017-11-02 11:58:02 +01:00
multistream-select = { path = "../multistream-select" }
2017-12-07 15:10:46 +01:00
futures = { version = "0.1", features = ["use_std"] }
2017-12-18 12:29:21 +01:00
parking_lot = "0.5.3"
protobuf = "2.0.2"
2018-05-24 00:54:08 +02:00
quick-error = "1.2"
2017-11-28 12:20:28 +01:00
smallvec = "0.5"
2017-04-08 18:26:05 +02:00
tokio-io = "0.1"
[dev-dependencies]
libp2p-ping = { path = "../ping" }
libp2p-tcp-transport = { path = "../tcp-transport" }
libp2p-mplex = { path = "../mplex" }
rand = "0.5"
tokio-core = "0.1"