skillctl 0.1.1

CLI tool to manage your personal Claude skills library across projects
[package]
name = "skillctl"
version = "0.1.1"
edition = "2024"
rust-version = "1.85"
description = "CLI tool to manage your personal Claude 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"
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"

# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"