-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
28 lines (26 loc) · 1 KB
/
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
27
28
[package]
name = "bip32-ed25519"
version = "0.2.0"
authors = ["Shift Crypto AG <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["no_std"]
categories = ["cryptography", "no-std"]
description = "BIP32-Ed25519"
[dependencies]
digest = { version = "0.10", default-features = false }
hmac = { version = "0.12", default-features = false, features = ["reset"] }
curve25519-dalek = { version = "4", default-features = false }
zeroize = { version = "1", features = ["zeroize_derive"] }
[dev-dependencies]
sha2 = { version = "0.10", default-features = false }
quickcheck = "1"
quickcheck_macros = "1"
num-bigint = "0.4.0"
# Used to test that the private keys are valid and can be used to sign messages.
ed25519-dalek = { version = "2.0.0", default-features = false, features = ["hazmat"] }
# Used to compare our implementation in a table test:
ed25519-bip32 = "0.4.0"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"
hex = { version = "0.4.3", features = ["serde"] }