forked from Blockstream/lwk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 910 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
39
40
[package]
name = "lwk_app"
version = "0.8.0"
edition = "2021"
description = "Liquid Wallet Kit - RPC server App"
license = "MIT OR BSD-2-Clause"
documentation = "https://docs.rs/lwk_app"
[dependencies]
lwk_common = { version = "0.8.0" }
lwk_jade = { version = "0.8.0" }
lwk_signer = { version = "0.8.0" }
lwk_wollet = { version = "0.8.0" }
lwk_rpc_model = { version = "0.8.0" }
lwk_tiny_jrpc = { version = "0.8.0" }
jsonrpc = { version = "0.17.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
secp256k1 = "0.27"
thiserror = "1"
log.workspace = true
rand = "0.8.5"
schemars = "0.8.16"
home = "0.5.5"
reqwest = { version = "0.12", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
"blocking",
"json",
"rustls-tls",
] }
[features]
serial = ["lwk_jade/serial"]
[dev-dependencies]
enum-iterator = "1.4.1"
tempfile = "3.8.1"