2019-01-30 11:36:00 +01:00
|
|
|
[package]
|
|
|
|
name = "libp2p-noise"
|
|
|
|
description = "Cryptographic handshake protocol using the noise framework."
|
2020-01-02 15:29:43 +01:00
|
|
|
version = "0.11.1"
|
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-11-06 09:37:22 +01:00
|
|
|
libp2p-core = { version = "0.13.0", path = "../../core" }
|
2019-01-30 11:36:00 +01:00
|
|
|
log = "0.4"
|
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-31 13:30:17 -04:00
|
|
|
rand = "^0.7.2"
|
|
|
|
ring = { version = "0.16.9", features = ["alloc"], default-features = false }
|
2019-10-11 04:19:35 -04:00
|
|
|
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]
|
2019-10-31 13:30:17 -04:00
|
|
|
env_logger = "0.7.1"
|
2019-11-06 09:37:22 +01:00
|
|
|
libp2p-tcp = { version = "0.13.0", path = "../../transports/tcp" }
|
2019-10-31 13:30:17 -04:00
|
|
|
quickcheck = "0.9.0"
|
2019-01-30 11:36:00 +01:00
|
|
|
tokio = "0.1"
|
2019-10-12 21:48:47 +02:00
|
|
|
sodiumoxide = "^0.2.5"
|