[package]
edition = "2024"
rust-version = "1.85"
name = "beck"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local skills router CLI for AI agents. Your agent's skills, at its beck and call."
readme = "README.md"
keywords = [
"cli",
"mcp",
"ai",
"agent",
"skills",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/notabotchef/beck"
[features]
default = []
eval = ["dep:toml"]
[lib]
name = "beck"
path = "src/lib.rs"
[[bin]]
name = "beck"
path = "src/main.rs"
[[bin]]
name = "eval"
path = "src/bin/eval.rs"
required-features = ["eval"]
[[test]]
name = "bootstrap_integration"
path = "tests/bootstrap_integration.rs"
[[test]]
name = "check_integration"
path = "tests/check_integration.rs"
[[test]]
name = "claude_code_integration"
path = "tests/claude_code_integration.rs"
[[test]]
name = "ingest_claude_integration"
path = "tests/ingest_claude_integration.rs"
[[test]]
name = "link_integration"
path = "tests/link_integration.rs"
[[test]]
name = "round_trip_integration"
path = "tests/round_trip_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6"
features = [
"derive",
"string",
]
[dependencies.dirs]
version = "6"
[dependencies.rmcp]
version = "1.3"
features = ["server"]
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.schemars]
version = "1.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.50"
features = ["full"]
[dependencies.toml]
version = "0.8"
optional = true
[dependencies.walkdir]
version = "2"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true