2017-09-14 00:25:34 +00:00
|
|
|
[package]
|
|
|
|
|
name = "x25519-dalek"
|
2017-10-09 04:33:04 +00:00
|
|
|
version = "0.1.0"
|
2017-09-14 00:25:34 +00:00
|
|
|
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = "BSD-3-Clause"
|
2018-04-02 20:07:25 +00:00
|
|
|
repository = "https://github.com/dalek-cryptography/x25519-dalek"
|
|
|
|
|
homepage = "https://dalek.rs/"
|
2017-09-14 00:25:34 +00:00
|
|
|
documentation = "https://docs.rs/x25519-dalek"
|
|
|
|
|
categories = ["cryptography", "no-std"]
|
|
|
|
|
keywords = ["cryptography", "curve25519", "key-exchange", "x25519", "diffie-hellman"]
|
|
|
|
|
description = "X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek."
|
|
|
|
|
exclude = [
|
|
|
|
|
".gitignore",
|
|
|
|
|
".travis.yml",
|
|
|
|
|
"CONTRIBUTING.md",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[badges]
|
2018-04-02 20:07:25 +00:00
|
|
|
travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master"}
|
2017-09-14 00:25:34 +00:00
|
|
|
|
|
|
|
|
[dependencies.curve25519-dalek]
|
|
|
|
|
version = "^0.12"
|
|
|
|
|
|
|
|
|
|
[dependencies.rand]
|
|
|
|
|
optional = true
|
|
|
|
|
version = "^0.3"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
bench = []
|
|
|
|
|
default = ["std", "nightly"]
|
|
|
|
|
std = ["rand", "curve25519-dalek/std"]
|
|
|
|
|
nightly = ["curve25519-dalek/nightly"]
|