-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
43 lines (36 loc) · 1000 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
41
42
43
[package]
name = "lwk_cli"
version = "0.8.0"
edition = "2021"
autotests = false
description = "Liquid Wallet Kit - Command line interface to interact with the RPC server"
license = "MIT OR BSD-2-Clause"
documentation = "https://docs.rs/lwk_cli"
[dependencies]
lwk_app = { version = "0.8.0" }
lwk_rpc_model = { version = "0.8.0" }
anyhow = "1.0.75"
clap = { version = "~4.5", features = ["derive", "env"] }
# config = "0.13.3"
log.workspace = true
env_logger = "0.11.5"
ctrlc = { version = "3.4.1", features = ["termination"] }
serde_json = "1"
clap_complete = "~4.5"
uniffi = { version = "0.28.2", features = ["cli"], optional = true }
[dev-dependencies]
lwk_containers = { version = "0.8.0" }
lwk_test_util = { version = "0.8.0" }
shellwords = "1.1.0"
elements = "0.25.0"
tempfile = "3.8.0"
[features]
bindings = ["uniffi"]
serial = ["lwk_app/serial"]
registry = []
[[test]]
name = "e2e"
path = "tests/cli.rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]