[package]
edition = "2021"
name = "context-creator"
version = "1.5.0"
authors = ["Matias Villaverde"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance CLI tool to convert codebases to Markdown for LLM context"
readme = "README.md"
keywords = [
"cli",
"llm",
"code",
"context",
"markdown",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/matiasvillaverde/context-creator"
[lib]
name = "context_creator"
path = "src/lib.rs"
[[bin]]
name = "context-creator"
path = "src/main.rs"
[[test]]
name = "cli_git_context_test"
path = "tests/cli_git_context_test.rs"
[[test]]
name = "cli_mcp_test"
path = "tests/cli_mcp_test.rs"
[[test]]
name = "context_options_test"
path = "tests/context_options_test.rs"
[[test]]
name = "git_context_integration_test"
path = "tests/git_context_integration_test.rs"
[[test]]
name = "git_context_test"
path = "tests/git_context_test.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "markdown_git_context_test"
path = "tests/markdown_git_context_test.rs"
[[test]]
name = "mcp_acceptance_mock_test"
path = "tests/mcp_acceptance_mock_test.rs"
[[test]]
name = "mcp_acceptance_test"
path = "tests/mcp_acceptance_test.rs"
[[test]]
name = "mcp_server_test"
path = "tests/mcp_server_test.rs"
[[test]]
name = "rmcp_basic_test"
path = "tests/rmcp_basic_test.rs"
[[test]]
name = "rmcp_integration_test"
path = "tests/rmcp_integration_test.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[[bench]]
name = "type_resolution_bench"
path = "benches/type_resolution_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.arboard]
version = "3.2"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dashmap]
version = "5.5"
[dependencies.deadpool]
version = "0.10"
[dependencies.dirs]
version = "5.0"
[dependencies.git2]
version = "0.20.1"
features = [
"vendored-libgit2",
"vendored-openssl",
]
[dependencies.glob]
version = "0.3"
[dependencies.hyper]
version = "1.0"
[dependencies.hyper-util]
version = "0.1"
[dependencies.ignore]
version = "0.4"
[dependencies.itertools]
version = "0.13"
[dependencies.jsonrpsee]
version = "0.22"
features = [
"server",
"http-client",
"macros",
]
[dependencies.lru]
version = "0.12"
[dependencies.moka]
version = "0.12"
features = ["future"]
[dependencies.num_cpus]
version = "1.16"
[dependencies.petgraph]
version = "0.6"
[dependencies.prost]
version = "0.12"
[dependencies.prost-types]
version = "0.12"
[dependencies.rayon]
version = "1.10"
[dependencies.rmcp]
version = "0.2.0"
features = [
"server",
"transport-io",
"transport-sse-server",
]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tiktoken-rs]
version = "0.5"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
features = ["full"]
[dependencies.tower-service]
version = "0.3"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.tree-sitter]
version = "0.20"
[dependencies.tree-sitter-go]
version = "0.20"
[dependencies.tree-sitter-java]
version = "0.20"
[dependencies.tree-sitter-javascript]
version = "0.20"
[dependencies.tree-sitter-python]
version = "0.20"
[dependencies.tree-sitter-rust]
version = "0.20"
[dependencies.tree-sitter-typescript]
version = "0.20"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.10"
[profile.dev]
opt-level = 0
codegen-units = 256
debug = 1
incremental = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.test]
opt-level = 0
codegen-units = 256
debug = 1
incremental = true