[package]
name = "x25519-dalek"
version = "0.2.1"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
exclude = [".gitignore", ".travis.yml", "CONTRIBUTING.md"]
description = "X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek."
homepage = "https://dalek.rs/"
documentation = "https://docs.rs/x25519-dalek"
readme = "README.md"
keywords = ["cryptography", "curve25519", "key-exchange", "x25519", "diffie-hellman"]
categories = ["cryptography", "no-std"]
license = "BSD-3-Clause"
repository = "https://github.com/dalek-cryptography/x25519-dalek"
[[bench]]
name = "x25519"
harness = false
[dependencies.curve25519-dalek]
version = "^0.18"
default-features = false
[dependencies.rand]
version = "^0.5"
optional = true
[dev-dependencies.criterion]
version = "0.2"
[features]
default = ["std", "nightly", "u64_backend"]
nightly = ["curve25519-dalek/nightly"]
std = ["rand", "curve25519-dalek/std"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]
[badges.travis-ci]
branch = "master"
repository = "dalek-cryptography/x25519-dalek"