ed25519-dalek 0.8.1

Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "ed25519-dalek"
version = "0.8.1"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
exclude = [".gitignore", "TESTVECTORS", "res/*"]
description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust."
homepage = "https://dalek.rs"
documentation = "https://docs.rs/ed25519-dalek"
readme = "README.md"
keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
categories = ["cryptography", "no-std"]
license = "BSD-3-Clause"
repository = "https://github.com/dalek-cryptography/ed25519-dalek"

[[bench]]
name = "ed25519_benchmarks"
harness = false
[dependencies.clear_on_drop]
version = "0.2"

[dependencies.curve25519-dalek]
version = "0.20"
default-features = false

[dependencies.digest]
version = "^0.7"

[dependencies.failure]
version = "^0.1.1"
default-features = false

[dependencies.generic-array]
version = "0.9"

[dependencies.rand]
version = "0.5"
features = ["i128_support"]
default-features = false

[dependencies.serde]
version = "^1.0"
optional = true

[dependencies.sha2]
version = "^0.7"
optional = true
[dev-dependencies.bincode]
version = "^0.9"

[dev-dependencies.criterion]
version = "0.2"

[dev-dependencies.hex]
version = "^0.3"

[dev-dependencies.sha2]
version = "^0.7"

[features]
alloc = ["curve25519-dalek/alloc"]
asm = ["sha2/asm"]
avx2_backend = ["curve25519-dalek/avx2_backend"]
default = ["std", "u64_backend"]
nightly = ["curve25519-dalek/nightly", "rand/nightly", "clear_on_drop/nightly"]
std = ["curve25519-dalek/std"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]
yolocrypto = ["curve25519-dalek/yolocrypto"]
[badges.travis-ci]
branch = "master"
repository = "dalek-cryptography/ed25519-dalek"