x25519-dalek 1.1.0

X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek.
Documentation
[[bench]]
harness = false
name = "x25519"
[badges.travis-ci]
branch = "master"
repository = "dalek-cryptography/x25519-dalek"
[dependencies.curve25519-dalek]
default-features = false
version = "3"

[dependencies.our_serde]
default-features = false
features = ["derive"]
optional = true
package = "serde"
version = "1"

[dependencies.rand_core]
default-features = false
version = "0.5"

[dependencies.zeroize]
default-features = false
features = ["zeroize_derive"]
version = "1"
[dev-dependencies.bincode]
version = "1"

[dev-dependencies.criterion]
version = "0.3.0"

[features]
default = ["std", "u64_backend"]
nightly = ["curve25519-dalek/nightly"]
serde = ["our_serde", "curve25519-dalek/serde"]
std = ["curve25519-dalek/std"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]

[package]
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>", "DebugSteven <debugsteven@gmail.com>", "Henry de Valence <hdevalence@hdevalence.ca>"]
categories = ["cryptography", "no-std"]
description = "X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek."
documentation = "https://docs.rs/x25519-dalek"
edition = "2018"
exclude = [".gitignore", ".travis.yml", "CONTRIBUTING.md"]
homepage = "https://dalek.rs/"
keywords = ["cryptography", "curve25519", "key-exchange", "x25519", "diffie-hellman"]
license = "BSD-3-Clause"
name = "x25519-dalek"
readme = "README.md"
repository = "https://github.com/dalek-cryptography/x25519-dalek"
version = "1.1.0"
[package.metadata.docs.rs]
features = ["nightly"]