rust-libp2p/core/Cargo.toml

32 lines
792 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>"]
license = "MIT"
2017-04-08 18:26:05 +02:00
[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 = "../misc/multiaddr" }
multihash = { path = "../misc/multihash" }
multistream-select = { path = "../misc/multistream-select" }
2017-12-07 15:10:46 +01:00
futures = { version = "0.1", features = ["use_std"] }
parking_lot = "0.6"
protobuf = "2.0.2"
2018-05-24 00:54:08 +02:00
quick-error = "1.2"
rw-stream-sink = { path = "../misc/rw-stream-sink" }
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 = "../protocols/ping" }
libp2p-tcp-transport = { path = "../transports/tcp" }
libp2p-mplex = { path = "../muxers/mplex" }
rand = "0.5"
tokio = "0.1"
tokio-codec = "0.1"
2018-07-16 12:15:27 +02:00
tokio-current-thread = "0.1"
tokio-timer = "0.2"