-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
40 lines (36 loc) · 1.16 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
[package]
name = "firma"
version = "0.21.0-dev"
authors = ["Riccardo Casatta <[email protected]>"]
edition = "2018"
license = "MIT"
homepage = "https://github.com/RCasatta/firma"
repository = "https://github.com/RCasatta/firma"
documentation = "https://docs.rs/firma/"
description = "Firma is a library to create bitcoin multisig wallets with private keys stored on offline devices."
keywords = ["sign", "bitcoin", "cold", "offline"]
[dependencies]
hex = "0.4.2"
bitcoin = { version = "0.27", features = [ "use-serde", "secp-recovery" ] }
bitcoincore-rpc = "0.14.0"
base64 = "0.13.0"
num-bigint = "0.3.1"
qr_code = { version= "2.0.0", features = ["bmp"] }
structopt = "0.3.20" # can't rexport https://github.com/TeXitoi/structopt/issues/339
log = "0.4.11"
serde = { version = "1.0.117", features = [ "derive" ] }
serde_json = "1.0.59"
home = "0.5.3"
rand = "0.7.3"
miniscript = "6.0.0"
aes-gcm-siv = "0.10.0"
tempfile = "3.1.0"
[dev-dependencies]
assert_matches = "1.5"
flate2 = "1.0"
serde_cbor = "0.11.1"
[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.16", default-features = false }
android_logger = "0.8"
[lib]
crate-type = ["staticlib", "cdylib", "lib"]