synaptic-qudag-core

Crates.iosynaptic-qudag-core
lib.rssynaptic-qudag-core
version0.1.0
created_at2025-07-13 13:19:30.664908+00
updated_at2025-07-13 13:19:30.664908+00
descriptionQuDAG core networking for Synaptic Neural Mesh - DAG-based consensus and P2P networking
homepagehttps://github.com/ruvnet/Synaptic-Mesh
repositoryhttps://github.com/ruvnet/Synaptic-Mesh
max_upload_size
id1750507
size42,858
rUv (ruvnet)

documentation

https://docs.rs/synaptic-qudag-core

README

Synaptic QuDAG Core

Core DAG networking and consensus library for the Synaptic Neural Mesh project.

Features

  • DAG-based consensus: Efficient directed acyclic graph structure
  • P2P networking: Built on modern cryptographic primitives
  • Async/await: Fully asynchronous implementation
  • Production-ready: Designed for distributed neural mesh networks

Usage

use synaptic_qudag_core::{QuDAGNode, QuDAGNetwork};

#[tokio::main]
async fn main() {
    let network = QuDAGNetwork::new();
    let node = QuDAGNode::new("example-data".as_bytes());
    network.add_node(node).await.unwrap();
}

License

MIT OR Apache-2.0

Commit count: 0

cargo fmt