2019-01-30 11:36:00 +01:00
|
|
|
[package]
|
|
|
|
name = "libp2p-noise"
|
|
|
|
description = "Cryptographic handshake protocol using the noise framework."
|
2019-08-15 13:50:28 +02:00
|
|
|
version = "0.10.0"
|
2019-01-30 11:36:00 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-10 11:26:18 +02:00
|
|
|
bytes = "0.4"
|
2019-01-30 11:36:00 +01:00
|
|
|
curve25519-dalek = "1"
|
|
|
|
futures = "0.1"
|
|
|
|
lazy_static = "1.2"
|
2019-08-15 13:50:28 +02:00
|
|
|
libp2p-core = { version = "0.12.0", path = "../../core" }
|
2019-01-30 11:36:00 +01:00
|
|
|
log = "0.4"
|
2019-10-22 13:39:07 +02:00
|
|
|
protobuf = "2.8"
|
2019-10-11 04:19:35 -04:00
|
|
|
rand = "^0.7"
|
|
|
|
ring = { version = "^0.16", features = ["alloc"], default-features = false }
|
|
|
|
snow = { version = "0.6.1", features = ["ring-resolver"], default-features = false }
|
2019-01-30 11:36:00 +01:00
|
|
|
tokio-io = "0.1"
|
2019-03-11 13:42:53 +01:00
|
|
|
x25519-dalek = "0.5"
|
2019-10-22 03:10:45 -07:00
|
|
|
zeroize = "1"
|
2019-01-30 11:36:00 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.6"
|
2019-08-15 13:50:28 +02:00
|
|
|
libp2p-tcp = { version = "0.12.0", path = "../../transports/tcp" }
|
2019-01-30 11:36:00 +01:00
|
|
|
quickcheck = "0.8"
|
|
|
|
tokio = "0.1"
|
2019-10-12 21:48:47 +02:00
|
|
|
sodiumoxide = "^0.2.5"
|