forked from SatoshiPortal/boltz-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 805 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
[package]
name = "boltz-client"
description = "a boltz client for swaps between BTC/LBTC & LN"
authors = ["i5hi <[email protected]>"]
version = "0.1.0"
edition = "2021"
license="MIT"
[lib]
name = "boltz_client"
path = "src/lib.rs"
doctest = false
crate-type = ["lib"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[build]
profiler = true
[dependencies]
hex = "0.4.3"
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
rand_core = {version = "0.6.4", features = ["getrandom"]}
ureq = {version = "2.8.0", features = ["json"]}
bip39 = "2.0.0"
electrum-client = "0.19.0"
bitcoin = {version = "0.31.1", features = ["rand", "base64", "rand-std"]}
elements = { version = "0.24.0", features = ["serde"] }
lightning-invoice = "0.26.0"