2017-09-14 00:25:34 +00:00
|
|
|
[package]
|
|
|
|
|
name = "x25519-dalek"
|
2018-07-27 20:19:07 +00:00
|
|
|
version = "0.3.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]
|
2018-07-27 20:17:01 +00:00
|
|
|
version = "^0.19"
|
2018-04-03 22:00:10 +00:00
|
|
|
default-features = false
|
2017-09-14 00:25:34 +00:00
|
|
|
|
2018-07-23 17:15:09 +00:00
|
|
|
[dependencies.rand_core]
|
|
|
|
|
default-features = false
|
|
|
|
|
version = "0.2"
|
2017-09-14 00:25:34 +00:00
|
|
|
|
2018-11-06 19:00:52 +00:00
|
|
|
[dependencies.clear_on_drop]
|
|
|
|
|
version = "0.2"
|
|
|
|
|
|
2018-04-02 21:53:26 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = "0.2"
|
2018-07-23 17:15:09 +00:00
|
|
|
rand = "0.5"
|
2018-04-02 21:53:26 +00:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "x25519"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2017-09-14 00:25:34 +00:00
|
|
|
[features]
|
2018-05-15 21:48:01 +00:00
|
|
|
default = ["std", "nightly", "u64_backend"]
|
2018-07-23 17:15:09 +00:00
|
|
|
std = ["curve25519-dalek/std"]
|
2018-11-06 19:00:52 +00:00
|
|
|
nightly = ["curve25519-dalek/nightly", "clear_on_drop/nightly"]
|
2018-05-15 21:48:01 +00:00
|
|
|
u64_backend = ["curve25519-dalek/u64_backend"]
|
|
|
|
|
u32_backend = ["curve25519-dalek/u32_backend"]
|