[package]
edition = "2021"
rust-version = "1.82"
name = "skillfile-deploy"
version = "1.3.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform adapters and installation for skillfile"
homepage = "https://github.com/eljulians/skillfile"
readme = false
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_deploy"
path = "src/lib.rs"
[dependencies.dirs]
version = "6"
[dependencies.skillfile-core]
version = "1.0.0"
[dependencies.skillfile-sources]
version = "1.0.0"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cognitive_complexity = "deny"
doc_markdown = "allow"
empty_structs_with_brackets = "deny"
excessive_nesting = "deny"
fn_params_excessive_bools = "deny"
format_push_string = "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"
needless_raw_strings = "deny"
redundant_closure_for_method_calls = "deny"
rest_pat_in_fully_bound_structs = "deny"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "deny"
string_lit_chars_any = "deny"
struct_excessive_bools = "allow"
too_many_arguments = "deny"
too_many_lines = "deny"
type_complexity = "deny"
unnested_or_patterns = "deny"
verbose_file_reads = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"