[package]
edition = "2024"
rust-version = "1.88"
name = "aicx"
version = "0.6.0"
authors = [
"Maciej Gad <void@div0.space>",
"Monika Szymanska <hello@vetcoders.io>",
]
build = false
exclude = [
"*.html",
"*.patch",
"*.orig",
".ai-agents/",
".ai-context/",
"scripts/",
"skills/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "aicx"
description = "Operator CLI + MCP server: canonical corpus first, optional semantic index second (Claude Code, Codex, Gemini)"
homepage = "https://github.com/Loctree/aicx"
documentation = "https://docs.rs/aicx"
readme = "README.md"
keywords = [
"ai",
"context",
"timeline",
"claude",
"codex",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "BUSL-1.1"
repository = "https://github.com/Loctree/aicx"
[lib]
name = "aicx"
path = "src/lib.rs"
[[bin]]
name = "aicx"
path = "src/main.rs"
[[bin]]
name = "aicx-mcp"
path = "src/bin/aicx_mcp.rs"
[[test]]
name = "frame_kind_contract"
path = "tests/frame_kind_contract.rs"
[[test]]
name = "legacy_codex_format_test"
path = "tests/legacy_codex_format_test.rs"
[[test]]
name = "runtime_cli_store_contract"
path = "tests/runtime_cli_store_contract.rs"
[[test]]
name = "runtime_reports_extractor"
path = "tests/runtime_reports_extractor.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.globset]
version = "0.4"
[dependencies.libc]
version = "0.2.183"
[dependencies.regex]
version = "1"
[dependencies.rmcp]
version = "1.2"
features = [
"server",
"schemars",
"transport-io",
"transport-streamable-http-server",
"transport-streamable-http-server-session",
]
[dependencies.rmcp-memex]
version = "0.5.0"
default-features = false
[dependencies.schemars]
version = "1.2.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"net",
"signal",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.filetime]
version = "0.2"
[profile.release]
lto = true
strip = true