forked from linfeng-crypto/chainlib-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1.26 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 = "cro-sign-tool"
version = "0.1.0"
authors = ["linfeng <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
sorted-json = "0.1"
serde_json = "1.0"
secp256k1 = { version = "0.17", default-features = false, features = ["rand"] }
tiny-bip39 = "0.8"
anyhow = { version = "1.0", features = ["std"] }
hdwallet = "0.2"
bitcoin_hashes = "0.9"
rand = "0.7"
base64 = "0.13"
stdtx = { version = "0.4.0-pre", features = ["amino"] }
thiserror = "1.0"
tokio = { version = "0.2", features = ["full"] }
ledger-crypto = { git = "https://github.com/crypto-com/ledger-crypto-rs", branch = "master" }
ledger-transport = { git = "https://github.com/Zondax/ledger-rs.git", branch = "master" }
zx-bip44 = { git = "https://github.com/Zondax/blockchain-tools-rs" }
async-trait = "0.1"
log = "0.4"
[dependencies.ledger]
package = "ledger-transport-hid"
git = "https://github.com/Zondax/ledger-rs.git"
branch = "master"
[[example]]
name = "mnemonic"
path = "example/example_mnemonic.rs"
[[example]]
name = "ledger"
path = "example/example_ledger.rs"
[dev-dependencies]
reqwest = { version = "0.10.9", features = ["json"] }
env_logger = "0.8.2"