[package]
edition = "2021"
rust-version = "1.82"
name = "skillfile"
version = "1.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tool-agnostic AI skill & agent manager - the Brewfile for your AI tooling"
homepage = "https://github.com/eljulians/skillfile"
readme = "README.md"
keywords = [
"ai",
"ai-agents",
"claude-code",
"package-manager",
"dotfiles",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/eljulians/skillfile"
[lib]
name = "skillfile"
path = "src/lib.rs"
[[bin]]
name = "skillfile"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.cliclack]
version = "0.4"
[dependencies.console]
version = "0.16"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6"
[dependencies.inquire]
version = "0.9"
[dependencies.ratatui]
version = "0.29"
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.similar]
version = "2"
[dependencies.skillfile-core]
version = "1.0.0"
[dependencies.skillfile-deploy]
version = "1.0.0"
[dependencies.skillfile-sources]
version = "1.0.0"
[dependencies.tempfile]
version = "3"
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "3"
features = ["json"]
[lints.clippy]
cognitive_complexity = "deny"
doc_markdown = "allow"
excessive_nesting = "deny"
fn_params_excessive_bools = "deny"
implicit_clone = "deny"
manual_let_else = "deny"
manual_string_new = "deny"
many_single_char_names = "deny"
map_unwrap_or = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "warn"
redundant_closure_for_method_calls = "deny"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "deny"
struct_excessive_bools = "allow"
too_many_arguments = "deny"
too_many_lines = "deny"
type_complexity = "deny"
unnested_or_patterns = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"