mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-28 17:21:34 +00:00
25 lines
670 B
TOML
25 lines
670 B
TOML
[package]
|
|
name = "libp2p-noise"
|
|
description = "Cryptographic handshake protocol using the noise framework."
|
|
version = "0.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
curve25519-dalek = "1"
|
|
futures = "0.1"
|
|
lazy_static = "1.2"
|
|
libp2p-core = { version = "0.4.0", path = "../../core" }
|
|
log = "0.4"
|
|
rand = "0.6.5"
|
|
snow = { version = "0.5.0-alpha1", default-features = false, features = ["ring-resolver"] }
|
|
tokio-io = "0.1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
libp2p-tcp = { version = "0.4.0", path = "../../transports/tcp" }
|
|
quickcheck = "0.8"
|
|
tokio = "0.1"
|