-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (56 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
74 lines (56 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "fgp"
version = "0.1.0"
edition = "2021"
description = "CLI for managing Fast Gateway Protocol daemons"
license = "MIT"
repository = "https://github.com/fast-gateway-protocol/cli"
homepage = "https://github.com/fast-gateway-protocol"
documentation = "https://docs.rs/fgp"
keywords = ["fgp", "daemon", "cli", "ai-agents"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "fgp"
path = "src/main.rs"
[dependencies]
# CLI framework
clap = { version = "4", features = ["derive", "env"] }
# FGP daemon client
fgp-daemon = { git = "https://github.com/fast-gateway-protocol/daemon.git" }
# FGP workflow engine
fgp-workflow = { git = "https://github.com/fast-gateway-protocol/workflow.git" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Error handling
anyhow = "1"
thiserror = "2"
# Path expansion
shellexpand = "3.1"
# Colors and formatting
colored = "2"
# Table output
tabled = "0.16"
# Process management
sysinfo = "0.32"
# TUI framework
ratatui = "0.29"
crossterm = "0.28"
# Async runtime for TUI events
tokio = { version = "1", features = ["sync", "time", "rt-multi-thread"] }
# Date/time
chrono = "0.4"
# Regex for pattern matching (skill import)
regex = "1"
# Home directory
dirs = "5"
# HTTP client for license validation
reqwest = { version = "0.12", features = ["blocking", "json"] }
# Machine fingerprinting
sha2 = "0.10"
hostname = "0.4"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"