[package]
edition = "2021"
rust-version = "1.75"
name = "hotspots-cli"
version = "1.11.0"
authors = ["Stephen Collins"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static analysis CLI for TypeScript, JavaScript, Go, Python, Rust, and Java that computes Local Risk Score (LRS)"
homepage = "https://hotspots.dev"
readme = "README.md"
keywords = [
"polyglot",
"static-analysis",
"complexity",
"code-quality",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/Stephen-Collins-tech/hotspots"
[[bin]]
name = "hotspots"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hotspots-core]
version = "1.11.0"
[dependencies.indicatif]
version = "0.17"
[lints.clippy]
complexity = "warn"
correctness = "warn"
perf = "warn"
style = "warn"