[package]
edition = "2024"
rust-version = "1.91.1"
name = "aicx"
version = "0.6.6"
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"
[features]
cloud-embedder = [
"dep:aicx-embeddings",
"aicx-embeddings/cloud",
]
default = [
"native-embedder",
"cloud-embedder",
]
native-embedder = [
"dep:aicx-embeddings",
"aicx-embeddings/gguf",
]
native-embedder-metal = [
"native-embedder",
"aicx-embeddings/metal",
]
native-embedder-openmp = [
"native-embedder",
"aicx-embeddings/openmp",
]
[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 = "codescribe_ingest"
path = "tests/codescribe_ingest.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 = "mcp_slim"
path = "tests/mcp_slim.rs"
[[test]]
name = "native_embedder"
path = "tests/native_embedder.rs"
[[test]]
name = "operator_md_ingest"
path = "tests/operator_md_ingest.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"
[[test]]
name = "store_progress_markers"
path = "tests/store_progress_markers.rs"
[[test]]
name = "wizard_smoke"
path = "tests/wizard_smoke.rs"
[dependencies.aicx-embeddings]
version = "0.6.2"
optional = true
default-features = false
[dependencies.aicx-parser]
version = "0.2.0"
features = ["json-schema"]
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6"
[dependencies.globset]
version = "0.4"
[dependencies.libc]
version = "0.2.183"
[dependencies.ratatui]
version = "0.29"
[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.6.5"
default-features = false
package = "rust-memex"
[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.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