-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
47 lines (43 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
47
[package]
name = "skillctl"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
description = "CLI to manage your personal agent skills library across projects"
license = "MIT"
repository = "https://github.com/umanio-agency/skillctl"
homepage = "https://github.com/umanio-agency/skillctl"
readme = "README.md"
keywords = ["claude", "skills", "cli"]
categories = ["command-line-utilities"]
exclude = [
".claude/**",
".github/**",
"dist-workspace.toml",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
]
[[bin]]
name = "skillctl"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
cliclack = "0.5.4"
crossterm = "0.29.0"
directories = "6.0.0"
fs4 = "0.13.1"
ignore = "0.4.25"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
time = { version = "0.3.47", features = ["formatting"] }
toml = "1.1.2"
unicode-normalization = "0.1.24"
unicode-script = "0.5.7"
[dev-dependencies]
tempfile = "3.14.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"