exocortex-cache 0.1.0

Exocortex local read path: ArcSwap lock-free snapshots, 2Q admission, and zero-allocation search/traverse over the org graph.
docs.rs failed to build exocortex-cache-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Lock-free readers, single-writer coordination. The graph itself is a petgraph::StableGraph wrapped in ArcSwap so the read side never blocks.

ยง8: LocalCache holds one GraphSnapshot per org behind Arc<ArcSwap<GraphSnapshot>>; readers load_full() (a refcount bump) and scan a consistent view; the single writer applies invalidations by copy-on-write and publishes a fresh Arc. 2Q admission governs which org graphs stay resident under the byte budget (R-M12/R-M13).