exocortex-server 0.4.0

The Exocortex node binary: mcp-standalone and backend-node modes over one listener (gRPC + HTTP + SSE) with gossip and lease re-election.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `exocortex-server` library surface: the SSE hub router (§9.7) and the
//! HTTP parity binding (§21.1) reused by the `exocortex-node` binary and
//! integration tests.

#![deny(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]

pub mod backend;
pub mod corpus_export;
pub mod explorer;
pub mod http_bind;
pub mod org_backup;
pub mod principal;
pub mod sse;
pub mod telemetry;