-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
26 lines (23 loc) · 940 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "ed25519-dalek-bip32"
version = "0.3.0"
authors = ["Julian Popescu <[email protected]>"]
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"