forked from RCasatta/firma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 847 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
27
28
29
30
[package]
name = "firma-cli"
version = "0.21.0-dev"
authors = ["Riccardo Casatta <[email protected]>"]
edition = "2018"
license = "MIT"
homepage = "https://github.com/RCasatta/firma/tree/master/cli"
repository = "https://github.com/RCasatta/firma/tree/master/cli"
documentation = "https://docs.rs/firma-cli/"
description = "firma-cli is a command line interface tool to create bitcoin multisig wallets with private keys stored on offline devices."
keywords = ["sign", "bitcoin", "cold", "offline", "cli"]
[dependencies]
# firma = "0.20.0"
firma = { path = "../lib" }
structopt = "0.3.20"
[[bin]]
name = "firma-online"
path = "src/online/main.rs"
[[bin]]
name = "firma-offline"
path = "src/offline/main.rs"
[dev-dependencies]
assert_matches = "1.5.0"
tempfile = "3.1.0"
rand = "0.7.3"
bitcoind = { version = "0.18.0", features = ["0_21_1"] }