-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (63 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
74 lines (63 loc) · 1.6 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 = "skillc"
version = "0.2.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "A development kit for Agent Skills - the open format for extending AI agent capabilities"
repository = "https://github.com/govctl-org/skillc"
keywords = ["ai", "agent", "skills", "mcp", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
exclude = [
".claude/",
".github/",
"gov/",
"scripts/",
"deny.toml",
".pre-commit-config.yaml",
"Justfile",
]
[[bin]]
name = "skc"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
comfy-table = { version = "7", features = ["tty"] }
crossterm = "0.29"
indicatif = { version = "0.18", features = ["rayon"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.9"
# Filesystem
dirs = "6"
glob = "0.3"
walkdir = "2"
# Text processing
lazy-regex = "3"
pulldown-cmark = "0.13"
regex = "1"
# Database
rusqlite = { version = "0.38", features = ["bundled"] }
# Concurrency
rayon = "1"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
rand = "0.9"
sha2 = "0.10"
strum = { version = "0.27", features = ["derive"] }
# MCP server (https://github.com/modelcontextprotocol/rust-sdk)
rmcp = { version = "0.14", features = ["server", "transport-io"] }
schemars = "1.2"
tokio = { version = "1", features = ["full"] }
[target.'cfg(windows)'.dependencies]
junction = "1"
[dev-dependencies]
assert_cmd = "2"
filetime = "0.2"
insta = { version = "1", features = ["json"] }
predicates = "3"
temp-env = "0.3"
tempfile = "3"