forked from i5hi/stackmate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 762 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
31
32
33
34
35
36
37
38
[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.17"
[dependencies]
bip39 = "1.0.1"
hex = "0.4.3"
serde = "1.0.126"
serde_derive = "1.0.0"
serde_json = "1.0.64"
sha-1 = "0.9.8"
async-trait="0.1.52"
[dependencies.bdk]
default-features = false
features = ["compiler", "use-esplora-reqwest"]
version = "0.14.0"
[dependencies.bitcoin]
features = ["rand", "base64"]
version = "0.27.1"
[lib]
crate-type = ["cdylib", "rlib"]
# crate-type = ["staticlib", "cdylib"]
name = "stackmate"
[profile]
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"