-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (40 loc) · 885 Bytes
/
Copy pathCargo.toml
File metadata and controls
51 lines (40 loc) · 885 Bytes
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
[package]
name = "sklz"
version = "0.1.1"
edition = "2024"
license = "Apache-2.0"
description = "Agent Skills Manager - The open agent skills ecosystem"
authors = ["Chris Custine"]
repository = "https://github.com/ccustine/sklz"
[dependencies]
# Core
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
tokio = { version = "1", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
sha2 = "0.11"
regex = "1"
tempfile = "3"
# CLI
clap = { version = "4", features = ["derive"] }
dialoguer = "0.12"
# TUI
ratatui = "0.30"
# HTTP
reqwest = { version = "0.13", features = ["json"] }
# YAML
serde_yml = "0.0.12"
# Git
git2 = "0.20"
# Config
toml = "1"
# Fuzzy matching (TUI command palette)
strsim = "0.11"
# Progress bars / spinners
indicatif = "0.17"
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
tempfile = "3"