scribe-cli 0.5.1

Advanced code analysis and repository exploration library with AI-powered insights
Documentation
[[bin]]
name = "scribe"
path = "src/bin/cli.rs"

[[bin]]
name = "test_budget_utilization"
path = "test_budget_utilization.rs"

[dependencies.aho-corasick]
version = "1.1"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.bloom]
version = "0.3"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.4"

[dependencies.dashmap]
version = "5.5"

[dependencies.futures]
version = "0.3"

[dependencies.git2]
version = "0.18"

[dependencies.globset]
version = "0.4"

[dependencies.handlebars]
version = "4.5"

[dependencies.ignore]
version = "0.4"

[dependencies.indexmap]
version = "2.0"

[dependencies.indicatif]
features = ["tokio", "futures", "rayon"]
version = "0.17"

[dependencies.log]
version = "0.4"

[dependencies.memchr]
version = "2.6"

[dependencies.once_cell]
version = "1.19"

[dependencies.open]
version = "5.0"

[dependencies.parking_lot]
version = "0.12"

[dependencies.petgraph]
version = "0.6"

[dependencies.rayon]
version = "1.8"

[dependencies.regex]
version = "1.10"

[dependencies.reqwest]
features = ["json"]
version = "0.11"

[dependencies.scribe-analysis]
optional = true
version = "0.5.1"

[dependencies.scribe-core]
optional = true
version = "0.5.1"

[dependencies.scribe-graph]
optional = true
version = "0.5.1"

[dependencies.scribe-patterns]
optional = true
version = "0.5.1"

[dependencies.scribe-scaling]
optional = true
version = "0.5.1"

[dependencies.scribe-scanner]
optional = true
version = "0.5.1"

[dependencies.scribe-selection]
optional = true
version = "0.5.1"

[dependencies.scribe-webservice]
default-features = false
optional = true
version = "0.5.1"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.13"

[dependencies.tempfile]
version = "3.8"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dependencies.tree-sitter]
version = "0.20"

[dependencies.url]
version = "2.4"

[dependencies.walkdir]
version = "2.4"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.env_logger]
version = "0.10"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "selective_features"
path = "examples/selective_features.rs"

[[example]]
name = "test_scaling"
path = "examples/test_scaling.rs"

[features]
analysis = ["core", "dep:scribe-analysis"]
cli = ["default"]
comprehensive = ["core", "analysis", "graph", "scanner", "patterns", "selection", "scaling", "web"]
core = ["dep:scribe-core"]
default = ["core", "analysis", "graph", "scanner", "patterns", "selection", "scaling", "web"]
fast = ["core", "scanner", "patterns"]
full = ["default", "scaling"]
graph = ["core", "analysis", "dep:scribe-graph"]
minimal = ["core"]
patterns = ["core", "dep:scribe-patterns"]
scaling = ["core", "dep:scribe-scaling"]
scanner = ["core", "dep:scribe-scanner"]
selection = ["core", "analysis", "graph", "dep:scribe-selection"]
web = ["scaling", "dep:scribe-webservice"]

[lib]
name = "scribe"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(tarpaulin)"]
level = "warn"
priority = 0

[package]
authors = ["Nathan Rice <nathan@sibylline.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "text-processing", "parsing"]
description = "Advanced code analysis and repository exploration library with AI-powered insights"
documentation = "https://docs.rs/scribe-cli"
edition = "2021"
exclude = ["workspace.toml"]
homepage = "https://github.com/sibyllinesoft/scribe"
keywords = ["code-analysis", "ast", "repository", "documentation", "developer-tools"]
license = "MIT OR Apache-2.0"
name = "scribe-cli"
readme = "README.md"
repository = "https://github.com/sibyllinesoft/scribe"
version = "0.5.1"

[profile.bench]
debug = 2

[profile.dev]
debug = 2
opt-level = 0

[profile.release]
codegen-units = 1
debug = 0
lto = "fat"
opt-level = 3
panic = "abort"
strip = true

[[test]]
name = "integration_scribe_behavior"
path = "tests/integration_scribe_behavior.rs"