secret-tree 0.2.0

Hierarchical secret derivation with Blake2b
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]
edition = "2018"
name = "secret-tree"
version = "0.2.0"
authors = ["Alex Ostrovski <ostrovski.alex@gmail.com>", "Pavel Mukhanov <mukhanovpv@gmail.com>"]
description = "Hierarchical secret derivation with Blake2b"
documentation = "https://docs.rs/secret-tree/"
readme = "README.md"
keywords = ["derivation", "blake2b", "cryptography"]
categories = ["cryptography", "no-std"]
license = "Apache-2.0"
repository = "https://github.com/slowli/secret-tree"

[[example]]
name = "ed25519"
path = "examples/ed25519.rs"
required-features = ["rand-06", "rand"]
[dependencies.blake2-rfc]
version = "0.2.18"

[dependencies.byteorder]
version = "1.3.2"

[dependencies.clear_on_drop]
version = "0.2.3"

[dependencies.rand]
version = "0.7.0"
optional = true

[dependencies.rand6]
version = "0.6"
optional = true
package = "rand"

[dependencies.rand6_chacha]
version = "0.1.1"
optional = true
package = "rand_chacha"

[dependencies.rand_chacha]
version = "0.2.0"
optional = true
[dev-dependencies.ed25519]
version = "1.0.0-pre.1"
package = "ed25519-dalek"

[dev-dependencies.hex]
version = "0.3.2"

[dev-dependencies.pwbox]
version = "0.2.1"
features = ["rust-crypto"]
default-features = false

[dev-dependencies.toml]
version = "0.5.1"

[features]
default = ["rand-07"]
rand-06 = ["rand6", "rand6_chacha"]
rand-07 = ["rand", "rand_chacha"]