[package]
edition = "2024"
rust-version = "1.97.1"
name = "shimpz-cli"
version = "0.1.0"
authors = ["Shimpz Inc"]
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
"NOTICE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast local tooling for Shimpz Assistants"
homepage = "https://shimpz.com"
readme = "README.md"
keywords = [
"assistant",
"cli",
"shimpz",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/TheShimpz/shimpz-cli"
[[bin]]
name = "shimpz"
path = "src/main.rs"
[dependencies.serde_json]
version = "1"
[lints.clippy]
all = "deny"
pedantic = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true