-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (36 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
46 lines (36 loc) · 1.08 KB
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
[package]
name = "lnmp-cli"
version = "0.5.7"
edition = "2021"
authors = ["LNMP Contributors"]
description = "Command-line tools for working with LNMP protocol"
license = "MIT"
[[bin]]
name = "lnmp-cli"
path = "src/main.rs"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
[dependencies]
# LNMP meta crate - provides unified access to all LNMP modules
lnmp = { workspace = true }
lnmp-net = { workspace = true, features = ["serde"] }
lnmp-envelope = { workspace = true } # For envelope operations
# CLI framework
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Serialization (for JSON conversion)
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
chrono = { version = "0.4", features = ["serde"] }
# Performance monitoring
ratatui = "0.25" # Terminal UI framework
crossterm = "0.27" # Terminal control
indicatif = "0.17"
# Terminal detection (for color auto mode)
atty = "0.2"
# UUID generation (for envelope trace IDs)
uuid = { version = "1.0", features = ["v4"] }