2017-09-14 00:25:34 +00:00
|
|
|
[package]
|
|
|
|
|
name = "x25519-dalek"
|
2019-10-24 22:44:57 +00:00
|
|
|
edition = "2018"
|
2019-03-29 19:53:43 +00:00
|
|
|
version = "0.5.2"
|
2019-01-22 22:03:00 +00:00
|
|
|
authors = [
|
|
|
|
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
|
|
|
|
"DebugSteven <debugsteven@gmail.com>",
|
|
|
|
|
"Henry de Valence <hdevalence@hdevalence.ca>",
|
|
|
|
|
]
|
2017-09-14 00:25:34 +00:00
|
|
|
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
|
|
|
|
2019-01-10 18:08:08 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-01-22 22:03:00 +00:00
|
|
|
#rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-1.0.1/docs/assets/rustdoc-include-katex-header.html"]
|
2019-01-10 18:08:08 +00:00
|
|
|
features = ["nightly"]
|
2017-09-14 00:25:34 +00:00
|
|
|
|
2019-01-10 18:08:08 +00:00
|
|
|
[dependencies]
|
|
|
|
|
curve25519-dalek = { version = "1", default-features = false }
|
|
|
|
|
rand_core = { version = "0.3", default-features = false }
|
|
|
|
|
clear_on_drop = { version = "0.2" }
|
2018-11-06 19:00:52 +00:00
|
|
|
|
2018-04-02 21:53:26 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = "0.2"
|
2019-01-05 13:17:05 +00:00
|
|
|
rand_os = "0.1"
|
2018-04-02 21:53:26 +00:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "x25519"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2017-09-14 00:25:34 +00:00
|
|
|
[features]
|
2019-02-03 16:13:50 +00:00
|
|
|
default = ["std", "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"]
|