ed25519-dalek-bip32 0.3.0

Simplified ed25519 BIP32 derivations
Documentation
[package]
name = "ed25519-dalek-bip32"
version = "0.3.0"
authors = ["Julian Popescu <jpopesculian@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/jpopesculian/ed25519-dalek-bip32"
documentation = "https://docs.rs/ed25519-dalek-bip32/"
repository = "https://github.com/jpopesculian/ed25519-dalek-bip32"
description = "Simplified ed25519 BIP32 derivations"
keywords = ["derivation", "BIP32", "ed25519", "trezor", "blockchain"]
categories = ["cryptography", "no-std"]

[features]
default = ["std"]
std = ["derivation-path/std", "sha2/std", "ed25519-dalek/std"]

[dependencies]
derivation-path = { version = "0.2.0", default-features = false }
sha2 = { version = "0.10.1", default-features = false }
hmac = { version = "0.12.0", default-features = false }
ed25519-dalek = { version = "2.0.0", default-features = false, features = ["rand_core"] }

[dev-dependencies]
hex = "0.4.2"