susyp2p-secio 0.7.0

Secio encryption protocol for susyp2p
Documentation
[package]
name = "susyp2p-secio"
edition = "2018"
description = "Secio encryption protocol for susyp2p"
version = "0.7.0"
authors = ["Susy Technologies <admin@superstring.ch>"]
license = "MIT"
repository = "https://github.com/susyp2p/rust-susyp2p"
keywords = ["peer-to-peer", "susyp2p", "networking"]
categories = ["network-programming", "asynchronous"]

[dependencies]
asn1_der = "0.6.1"
bytes = "0.4"
futures = "0.1"
susyp2p-core = { version = "0.7.0", path = "../../core" }
log = "0.4.6"
protobuf = "2.3"
rand = "0.6.5"
secp256k1 = { version = "0.12", features = ["rand"], optional = true }
aes-ctr = "0.3"
aesni = { version = "0.6", features = ["nocheck"], optional = true }
twofish = "0.2.0"
ctr = "0.3"
lazy_static = "1.2.0"
rw-stream-sink = { version = "0.1.1", path = "../../misc/rw-stream-sink" }
tokio-io = "0.1.0"
sha2 = "0.8.0"
hmac = "0.7.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ring = { version = "0.14", features = ["use_heap"], default-features = false }
untrusted = { version = "0.6" }

[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3.10"
send_wrapper = "0.2"
wasm-bindgen = "0.2.33"
wasm-bindgen-futures = "0.3.10"
web-sys = { version = "0.3.10", features = ["Crypto", "CryptoKey", "SubtleCrypto", "Window"] }

[features]
default = ["secp256k1"]
aes-all = ["aesni"]

[dev-dependencies]
criterion = "0.2"
susyp2p-tcp = { version = "0.7.0", path = "../../transports/tcp" }
tokio = "0.1"
tokio-tcp = "0.1"

[[bench]]
name = "bench"
harness = false