2018-11-15 17:41:11 +01:00
|
|
|
[package]
|
|
|
|
name = "libp2p-plaintext"
|
2019-01-21 10:33:51 +00:00
|
|
|
edition = "2018"
|
2018-12-06 19:22:06 +01:00
|
|
|
description = "Plaintext encryption dummy protocol for libp2p"
|
2020-01-02 15:29:43 +01:00
|
|
|
version = "0.13.1"
|
2018-11-15 17:41:11 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
license = "MIT"
|
2018-12-06 19:22:06 +01:00
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
keywords = ["peer-to-peer", "libp2p", "networking"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
2018-11-15 17:41:11 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2019-10-31 13:30:17 -04:00
|
|
|
futures = "0.1.29"
|
2019-11-06 09:37:22 +01:00
|
|
|
libp2p-core = { version = "0.13.0", path = "../../core" }
|
2019-10-31 13:30:17 -04:00
|
|
|
bytes = "0.4.12"
|
|
|
|
log = "0.4.8"
|
|
|
|
void = "1.0.2"
|
2019-10-11 19:14:18 +09:00
|
|
|
tokio-io = "0.1.12"
|
2020-01-02 15:29:43 +01:00
|
|
|
protobuf = "=2.8.1" # note: there exists some semver issues with protobuf at the moment
|
2019-10-11 19:14:18 +09:00
|
|
|
rw-stream-sink = { version = "0.1.1", path = "../../misc/rw-stream-sink" }
|