-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
70 lines (57 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
authors = ["i5hi, mocodesmo"]
description = "Rust-C FFI exposing composite functionality to build bitcoin descriptor wallets."
edition = "2018"
keywords = ["bitcoin", "rust-c-ffi"]
license = "MIT"
name = "stackmate"
version = "0.7.15"
[dependencies]
bip39 = "1.0.1"
hex = "0.4.3"
openssl = {version = "*", features = ["vendored"]}
openssl-sys = {version = "*", features = ["vendored"]}
libtor = "46.6.1+0.4.6.6"
serde = "1.0.126"
serde_derive = "1.0.0"
serde_json = "1.0.64"
sha-1 = "0.9.8"
[dependencies.bdk]
features = ["compiler", "rpc", "electrum"]
version = "0.12.0"
[dependencies.bitcoin]
features = ["rand", "base64"]
version = "0.27.1"
[lib]
crate-type = ["staticlib", "cdylib"]
name = "stackmate"
# [profile]
# [profile.release]
# codegen-units = 1
# lto = true
# opt-level = "z"
# panic = "abort"
# [target.aarch64-linux-android.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.i686-linux-android.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.x84_64-linux-android.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.x86_64-apple-ios.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.aarch64-apple-ios.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.armv7-apple-ios.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.armv7s-apple-ios.dependencies.openssl]
# features = ["vendored"]
# version = "*"
# [target.i386-apple-ios.dependencies.openssl]
# features = ["vendored"]
# version = "*"