2016-12-01 00:40:48 +00:00
|
|
|
[package]
|
2016-12-08 22:21:57 +00:00
|
|
|
name = "ed25519-dalek"
|
2018-03-26 02:32:38 +00:00
|
|
|
version = "0.6.2"
|
2018-01-20 02:49:53 +00:00
|
|
|
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
|
2016-12-01 00:40:48 +00:00
|
|
|
readme = "README.md"
|
2017-10-05 06:19:55 +00:00
|
|
|
license = "BSD-3-Clause"
|
2018-01-20 02:49:53 +00:00
|
|
|
repository = "https://github.com/dalek-cryptography/ed25519-dalek"
|
|
|
|
|
homepage = "https://dalek.rs"
|
2017-02-21 21:26:44 +00:00
|
|
|
documentation = "https://docs.rs/ed25519-dalek"
|
2017-02-21 21:27:12 +00:00
|
|
|
keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
|
|
|
|
|
categories = ["cryptography", "no-std"]
|
2017-08-01 03:35:38 +00:00
|
|
|
description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust."
|
2017-03-15 22:48:56 +00:00
|
|
|
exclude = [ ".gitignore", "TESTVECTORS", "res/*" ]
|
2016-12-01 00:40:48 +00:00
|
|
|
|
2017-03-14 23:11:47 +00:00
|
|
|
[badges]
|
2018-03-26 02:11:43 +00:00
|
|
|
travis-ci = { repository = "dalek-cryptography/ed25519-dalek", branch = "master"}
|
2017-03-14 23:11:47 +00:00
|
|
|
|
2017-02-06 21:45:08 +00:00
|
|
|
[dependencies.curve25519-dalek]
|
2018-07-11 20:36:17 +00:00
|
|
|
version = "0.18"
|
2017-08-01 06:52:10 +00:00
|
|
|
default-features = false
|
|
|
|
|
|
2017-02-06 21:45:08 +00:00
|
|
|
[dependencies.rand]
|
2018-07-11 20:36:17 +00:00
|
|
|
version = "0.5"
|
2018-05-16 22:09:31 +00:00
|
|
|
default-features = false
|
2016-12-09 00:52:38 +00:00
|
|
|
|
2017-03-14 21:36:35 +00:00
|
|
|
[dependencies.digest]
|
2018-01-17 19:33:41 +00:00
|
|
|
version = "^0.7"
|
2017-03-14 21:36:35 +00:00
|
|
|
|
|
|
|
|
[dependencies.generic-array]
|
|
|
|
|
# same version that digest depends on
|
2018-01-20 02:36:42 +00:00
|
|
|
version = "0.9"
|
2017-03-14 21:36:35 +00:00
|
|
|
|
2017-11-05 23:20:04 +00:00
|
|
|
[dependencies.serde]
|
|
|
|
|
version = "^1.0"
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[dependencies.sha2]
|
2018-01-17 19:33:41 +00:00
|
|
|
version = "^0.7"
|
2017-11-05 23:20:04 +00:00
|
|
|
optional = true
|
|
|
|
|
|
2017-12-06 23:25:12 +00:00
|
|
|
[dependencies.failure]
|
|
|
|
|
version = "^0.1.1"
|
|
|
|
|
default-features = false
|
|
|
|
|
|
2016-12-09 00:52:38 +00:00
|
|
|
[dev-dependencies]
|
2018-01-17 19:33:41 +00:00
|
|
|
hex = "^0.3"
|
|
|
|
|
sha2 = "^0.7"
|
2017-11-05 23:20:04 +00:00
|
|
|
bincode = "^0.9"
|
2018-07-11 22:41:14 +00:00
|
|
|
criterion = "0.2"
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "ed25519_benchmarks"
|
|
|
|
|
harness = false
|
2017-02-06 21:45:08 +00:00
|
|
|
|
|
|
|
|
[features]
|
2018-05-15 23:34:01 +00:00
|
|
|
default = ["std", "u64_backend"]
|
2018-05-16 22:09:31 +00:00
|
|
|
# We don't add "rand/std" here because it would enable a bunch of Fuchsia dependencies.
|
2018-07-13 19:39:45 +00:00
|
|
|
std = ["curve25519-dalek/std"]
|
|
|
|
|
nightly = ["curve25519-dalek/nightly", "rand/nightly"]
|
2017-08-01 22:21:59 +00:00
|
|
|
asm = ["sha2/asm"]
|
2018-03-26 02:13:39 +00:00
|
|
|
yolocrypto = ["curve25519-dalek/yolocrypto"]
|
2018-05-15 23:34:01 +00:00
|
|
|
u64_backend = ["curve25519-dalek/u64_backend"]
|
|
|
|
|
u32_backend = ["curve25519-dalek/u32_backend"]
|
|
|
|
|
avx2_backend = ["curve25519-dalek/avx2_backend"]
|