aingle_cortex 0.6.3

Córtex API - REST/GraphQL/SPARQL interface for AIngle semantic graphs
Documentation
// Copyright 2019-2026 Apilium Technologies OÜ. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR Commercial

//! P2P networking for Cortex triple synchronization.
//!
//! Enables multi-node knowledge graph sync via QUIC transport,
//! bloom filter gossip, and optional mDNS discovery.

pub mod config;
#[cfg(feature = "dag")]
pub mod dag_sync;
pub mod discovery;
pub mod gossip;
pub mod identity;
pub mod manager;
pub mod message;
pub mod peer_store;
pub mod rate_limiter;
pub mod sync_manager;
pub mod transport;