[package]
name = "shimpz-cli"
version = "0.1.6"
description = "Fast local tooling for Shimpz Assistants"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/TheShimpz/shimpz-cli"
homepage = "https://shimpz.com"
rust-version = "1.97.1"
readme = "README.md"
authors = ["Shimpz Inc"]
keywords = ["assistant", "cli", "shimpz"]
categories = ["command-line-utilities", "development-tools"]
publish = ["crates-io"]
include = ["contracts/**", "src/**", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE", "NOTICE"]
[dependencies]
serde_json = "1"
sha2 = "0.10"
self_update = { version = "0.44.0", default-features = false, features = ["compression-flate2", "compression-zip-deflate", "rustls", "ureq"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi-util = "0.1.11"
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
[[bin]]
name = "shimpz"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "abort"
strip = true
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
[lints.clippy]
all = "deny"
pedantic = "deny"