[package]
edition = "2024"
rust-version = "1.88"
name = "rust-memex"
version = "0.6.5"
authors = [
"Maciej Gad <void@div0.space>",
"Monika Szymanska <hello@vetcoders.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Operator CLI + MCP server: canonical corpus second: semantic index second to aicx"
homepage = "https://github.com/Loctree/rust-memex"
documentation = "https://docs.rs/rust-memex"
readme = "README.md"
keywords = [
"mcp",
"rag",
"embeddings",
"lancedb",
"vector-search",
]
categories = [
"development-tools",
"database",
]
license = "BUSL-1.1"
repository = "https://github.com/Loctree/rust-memex"
resolver = "2"
[features]
cli = [
"clap",
"indicatif",
"ratatui",
"crossterm",
"sysinfo",
]
default = [
"cli",
"provider-cascade",
]
e2e-ollama = []
provider-cascade = []
[lib]
name = "rust_memex"
path = "src/lib.rs"
[[bin]]
name = "rust-memex"
path = "src/bin/rust_memex.rs"
required-features = ["cli"]
[[test]]
name = "cli_index_strict"
path = "tests/cli_index_strict.rs"
[[test]]
name = "config_deny_unknown"
path = "tests/config_deny_unknown.rs"
[[test]]
name = "e2e_cli_folder_index"
path = "tests/e2e_cli_folder_index.rs"
[[test]]
name = "e2e_pipeline"
path = "tests/e2e_pipeline.rs"
[[test]]
name = "engine_integration"
path = "tests/engine_integration.rs"
[[test]]
name = "health_schema"
path = "tests/health_schema.rs"
[[test]]
name = "http_diagnostic_endpoints"
path = "tests/http_diagnostic_endpoints.rs"
[[test]]
name = "http_lifecycle_endpoints"
path = "tests/http_lifecycle_endpoints.rs"
[[test]]
name = "http_recovery_endpoints"
path = "tests/http_recovery_endpoints.rs"
[[test]]
name = "http_schema_mismatch"
path = "tests/http_schema_mismatch.rs"
[[test]]
name = "migrate_schema"
path = "tests/migrate_schema.rs"
[[test]]
name = "startup_guard"
path = "tests/startup_guard.rs"
[[test]]
name = "transport_parity"
path = "tests/transport_parity.rs"
[dependencies.aicx-parser]
version = "0.2"
[dependencies.anyhow]
version = "1.0"
[dependencies.argon2]
version = "0.5"
[dependencies.arrow-array]
version = "57"
[dependencies.arrow-schema]
version = "57"
[dependencies.async-stream]
version = "0.3"
[dependencies.axum]
version = "0.8"
features = [
"json",
"multipart",
]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true
[dependencies.crossterm]
version = "0.29"
optional = true
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
optional = true
[dependencies.lancedb]
version = "0.27"
default-features = false
[dependencies.memex-contracts]
version = "0.6.5"
[dependencies.openidconnect]
version = "4.0.1"
features = ["reqwest"]
default-features = false
[dependencies.pdf-extract]
version = "0.10"
[dependencies.ratatui]
version = "0.29"
optional = true
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls-native-roots",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.shellexpand]
version = "3.1"
[dependencies.subtle]
version = "2.6"
[dependencies.sysinfo]
version = "0.39"
optional = true
[dependencies.tantivy]
version = "0.24"
[dependencies.tokio]
version = "1.52"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.toml]
version = "1"
[dependencies.tower-http]
version = "0.6"
features = ["cors"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.18"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[build-dependencies.protoc-bin-vendored]
version = "3"