-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (37 loc) · 1.24 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "hd-ed25519"
version = "0.0.1"
authors = ["Jeff Burdges <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/w3f/hd-ed25519"
categories = ["cryptography"] # "no-std"
keywords = ["cryptography", "curve25519", "ECC"]
description = "Hierachical key derivation on ed255190-dalek"
[dependencies.ed25519-dalek]
version = "1"
default-features = false
[dependencies.curve25519-dalek]
version = "3"
default-features = false
[dependencies.rand]
version = "0.7"
default-features = false
[dependencies.serde]
version = "^1.0"
optional = true
[dependencies.clear_on_drop]
version = "0.2"
[dev-dependencies]
sha2 = "^0.9"
[features]
default = ["dalek-rand", "std", "u64_backend"]
dalek-rand = ["ed25519-dalek/rand"]
# We don't add "rand/std" here because it would enable a bunch of Fuchsia dependencies.
std = ["curve25519-dalek/std", "rand/std"]
alloc = ["curve25519-dalek/alloc"]
# nightly = ["curve25519-dalek/nightly", "rand/nightly", "clear_on_drop/nightly"]
u64_backend = ["curve25519-dalek/u64_backend","ed25519-dalek/u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend","ed25519-dalek/u32_backend"]
simd_backend = ["curve25519-dalek/simd_backend","ed25519-dalek/simd_backend"]