[package]
name = "post-cortex-core"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "Core domain library for post-cortex: lock-free conversation memory, semantic search, knowledge graph, and storage backends. Transport-agnostic — no axum/tonic/rmcp."
keywords = ["conversation", "memory", "semantic-search", "lock-free", "knowledge-graph"]
categories = ["data-structures", "database-implementations", "concurrency"]
readme = "README.md"
documentation = "https://docs.rs/post-cortex-core"
[dependencies]
post-cortex-proto.workspace = true
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
schemars.workspace = true
bincode.workspace = true
uuid.workspace = true
chrono.workspace = true
tokio.workspace = true
tokio-util.workspace = true
futures.workspace = true
thiserror.workspace = true
async-trait.workspace = true
regex.workspace = true
dashmap.workspace = true
crossbeam-channel.workspace = true
crossbeam-queue.workspace = true
arc-swap.workspace = true
atomic_float.workspace = true
parking_lot.workspace = true
rayon.workspace = true
num_cpus.workspace = true
rand.workspace = true
petgraph.workspace = true
log.workspace = true
tracing.workspace = true
[dev-dependencies]
tokio-test.workspace = true
tempfile.workspace = true
criterion.workspace = true
proptest.workspace = true
serial_test.workspace = true
tokio-stream.workspace = true
[features]
default = []
otel = []
[lints]
workspace = true