[package]
edition = "2021"
name = "exocortex-server"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Exocortex node binary: mcp-standalone and backend-node modes over one listener (gRPC + HTTP + SSE) with gossip and lease re-election."
readme = false
license = "AGPL-3.0-or-later"
repository = "https://github.com/memory-graph/exocortex"
[features]
fastembed = ["exocortex-ingest/fastembed"]
otlp = [
"dep:opentelemetry",
"dep:opentelemetry_sdk",
"dep:opentelemetry-otlp",
"dep:metrics-exporter-opentelemetry",
"dep:metrics-util",
]
[lib]
name = "exocortex_server"
path = "src/lib.rs"
[[bin]]
name = "exocortex-node"
path = "src/main.rs"
[[test]]
name = "adapter_sdk_out_of_process"
path = "tests/adapter_sdk_out_of_process.rs"
[[test]]
name = "auth_coverage"
path = "tests/auth_coverage.rs"
[[test]]
name = "backend_node"
path = "tests/backend_node.rs"
[[test]]
name = "corpus_export"
path = "tests/corpus_export.rs"
[[test]]
name = "credential_redaction"
path = "tests/credential_redaction.rs"
[[test]]
name = "e2e_chain"
path = "tests/e2e_chain.rs"
[[test]]
name = "explorer"
path = "tests/explorer.rs"
[[test]]
name = "http_parity"
path = "tests/http_parity.rs"
[[test]]
name = "org_backup"
path = "tests/org_backup.rs"
[[test]]
name = "security_convergence"
path = "tests/security_convergence.rs"
[[test]]
name = "sse_limits"
path = "tests/sse_limits.rs"
[[test]]
name = "sse_replay"
path = "tests/sse_replay.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arc-swap]
version = "1.7"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = [
"macros",
"http2",
]
[dependencies.axum-server]
version = "0.7"
features = ["tls-rustls-no-provider"]
[dependencies.chitchat]
version = "0.9"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.exocortex-cache]
version = "0.4.0"
[dependencies.exocortex-cluster]
version = "0.4.0"
[dependencies.exocortex-dreams]
version = "0.4.0"
[dependencies.exocortex-ingest]
version = "0.4.0"
[dependencies.exocortex-kernel]
version = "0.4.0"
[dependencies.exocortex-ops]
version = "0.4.0"
[dependencies.exocortex-pack-dev-v1]
version = "0.4.0"
[dependencies.exocortex-pack-mortgage-v1]
version = "0.4.0"
[dependencies.exocortex-reasoning]
version = "0.4.0"
[dependencies.exocortex-storage]
version = "0.4.0"
[dependencies.exocortex-wire]
version = "0.4.0"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.metrics]
version = "0.24"
[dependencies.metrics-exporter-opentelemetry]
version = "0.2"
optional = true
[dependencies.metrics-exporter-prometheus]
version = "0.18"
[dependencies.metrics-util]
version = "0.20"
optional = true
[dependencies.opentelemetry]
version = "0.31"
optional = true
[dependencies.opentelemetry-otlp]
version = "0.31"
features = [
"grpc-tonic",
"metrics",
"internal-logs",
]
optional = true
default-features = false
[dependencies.opentelemetry_sdk]
version = "0.31"
optional = true
[dependencies.prost]
version = "0.13"
[dependencies.redis]
version = "0.27"
features = [
"tokio-comp",
"aio",
]
[dependencies.rmcp]
version = "0.1"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tonic]
version = "0.12"
features = [
"tls",
"tls-native-roots",
"gzip",
]
[dependencies.tower]
version = "0.5"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.chitchat]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.40"
features = [
"full",
"test-util",
]