[package]
edition = "2024"
rust-version = "1.95.0"
name = "aptu-coder"
version = "0.14.0"
authors = ["Hugues Clouatre"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for multi-language code structure analysis"
homepage = "https://github.com/clouatre-labs/aptu-coder"
readme = "README.md"
keywords = [
"mcp",
"code-analysis",
"tree-sitter",
"ast",
"static-analysis",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/clouatre-labs/aptu-coder"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "aptu_coder"
path = "src/lib.rs"
[[bin]]
name = "aptu-coder"
path = "src/main.rs"
[[test]]
name = "annotations"
path = "tests/annotations.rs"
[[test]]
name = "exec_command"
path = "tests/exec_command.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "logging_layer_tests"
path = "tests/logging_layer_tests.rs"
[[test]]
name = "mcp_smoke"
path = "tests/mcp_smoke.rs"
[[test]]
name = "otel_tests"
path = "tests/otel_tests.rs"
[[test]]
name = "profiles"
path = "tests/profiles.rs"
[dependencies.aptu-coder-core]
version = "0.14"
features = [
"schemars",
"lang-rust",
"lang-go",
"lang-java",
"lang-python",
"lang-typescript",
"lang-tsx",
"lang-fortran",
"lang-javascript",
"lang-cpp",
"lang-csharp",
]
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
features = [
"http1",
"tokio",
]
default-features = false
[dependencies.blake3]
version = "1"
[dependencies.nix]
version = "0.31"
features = ["resource"]
[dependencies.opentelemetry]
version = "0.32"
[dependencies.opentelemetry-appender-tracing]
version = "0.32"
features = ["log"]
[dependencies.opentelemetry-otlp]
version = "0.32"
features = [
"http-proto",
"reqwest-client",
]
[dependencies.opentelemetry_sdk]
version = "0.32"
features = [
"rt-tokio",
"metrics",
]
[dependencies.rmcp]
version = "1"
features = [
"server",
"macros",
"transport-io",
"transport-streamable-http-server",
]
[dependencies.rustls]
version = "0.23"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
"process",
"signal",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["io-util"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-opentelemetry]
version = "0.33"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"registry",
]
[dependencies.which]
version = "8"
[dev-dependencies.serial_test]
version = "=3.4.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
"process",
"signal",
]