-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (38 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "ledger-zcash"
description = "Library to communicate with the Ledger Zcash app"
version = "2.0.0"
license = "Apache-2.0"
authors = ["Zondax AG <[email protected]>"]
homepage = "https://github.com/Zondax/ledger-zcash-rs"
repository = "https://github.com/Zondax/ledger-zcash-rs"
readme = "README.md"
categories = ["authentication", "cryptography"]
keywords = ["ledger", "nano", "apdu", "zcash"]
edition = "2021"
autobenches = false
[lib]
name = "ledger_zcash"
[features]
default = []
[dependencies]
byteorder = "1.5"
cfg-if = "1"
lazy_static = "1"
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.38", features = ["sync"] }
educe = "0.5"
log = "0.4"
sha2 = "0.10.8"
thiserror = "1.0"
zx-bip44 = "0.1.0"
ledger-transport = "0.11"
ledger-zondax-generic = "0.11"
[dev-dependencies]
futures = "0.3"
matches = "0.1"
serial_test = "3.1"
env_logger = { version = "0.11", default-features = false }
tokio = { version = "1", features = ["full"] }
ledger-transport-hid = "0.11"