[package]
edition = "2021"
rust-version = "1.74"
name = "skillpack"
version = "0.5.0"
authors = ["nordicnode <128633122+nordicnode@users.noreply.github.com>"]
build = false
exclude = ["/.claude"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate and verify the agent-distribution layer for any OSS project (Claude Code, Cursor, Codex, OpenCode, GitHub Copilot)."
homepage = "https://github.com/nordicnode/skillpack"
readme = "README.md"
keywords = [
"cli",
"claude",
"agent",
"skills",
"distribution",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nordicnode/skillpack"
[lib]
name = "skillpack"
path = "src/lib.rs"
[[bin]]
name = "skillpack"
path = "src/main.rs"
[[test]]
name = "integration_end_to_end"
path = "tests/integration_end_to_end.rs"
[[test]]
name = "property_proptest"
path = "tests/property_proptest.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dialoguer]
version = "0.11"
features = [
"fuzzy-select",
"editor",
]
default-features = false
[dependencies.indexmap]
version = "2"
[dependencies.once_cell]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tempfile]
version = "3"
[dependencies.tera]
version = "1"
default-features = false
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
unsafe_code = "deny"
[profile.release]
lto = true
codegen-units = 1
strip = true