[package]
edition = "2024"
rust-version = "1.96"
name = "codelore"
version = "0.26.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CodeLore — Behavioral Code Analyzer CLI"
readme = "README.md"
keywords = [
"behavioral-analysis",
"code-analysis",
"repository-mining",
"technical-debt",
"code-maat",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "GPL-3.0-only"
repository = "https://github.com/emrecdr/codelore"
resolver = "2"
[features]
default = []
spa = ["codelore-lib/spa"]
[[bin]]
name = "codelore"
path = "src/main.rs"
[[test]]
name = "cli_test"
path = "tests/cli_test.rs"
[[test]]
name = "mcp_test"
path = "tests/mcp_test.rs"
required-features = []
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.codelore-lib]
version = "0.26.0"
[dependencies.dirs]
version = "6"
[dependencies.rmcp]
version = "3.1"
features = [
"server",
"transport-io",
]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.time]
version = "0.3"
features = [
"macros",
"parsing",
]
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"io-std",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.codelore-lib]
version = "0.26.0"
features = ["test-support"]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.walkdir]
version = "2"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"