curve25519-dalek-source/Cargo.toml

65 lines
1.6 KiB
TOML
Raw Normal View History

2016-12-01 00:40:48 +00:00
[package]
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"
documentation = "https://docs.rs/ed25519-dalek"
keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
categories = ["cryptography", "no-std"]
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]
travis-ci = { repository = "dalek-cryptography/ed25519-dalek", branch = "master"}
2017-03-14 23:11:47 +00:00
[dependencies.curve25519-dalek]
version = "0.18"
default-features = false
[dependencies.rand]
version = "0.5"
2018-05-16 22:09:31 +00:00
default-features = false
[dependencies.digest]
version = "^0.7"
[dependencies.generic-array]
# same version that digest depends on
version = "0.9"
[dependencies.serde]
version = "^1.0"
optional = true
[dependencies.sha2]
version = "^0.7"
optional = true
[dependencies.failure]
version = "^0.1.1"
default-features = false
[dev-dependencies]
hex = "^0.3"
sha2 = "^0.7"
bincode = "^0.9"
criterion = "0.2"
[[bench]]
name = "ed25519_benchmarks"
harness = false
[features]
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.
std = ["curve25519-dalek/std"]
nightly = ["curve25519-dalek/nightly", "rand/nightly"]
asm = ["sha2/asm"]
yolocrypto = ["curve25519-dalek/yolocrypto"]
u64_backend = ["curve25519-dalek/u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend"]
avx2_backend = ["curve25519-dalek/avx2_backend"]