| Crates.io | synaptic-qudag-core |
| lib.rs | synaptic-qudag-core |
| version | 0.1.0 |
| created_at | 2025-07-13 13:19:30.664908+00 |
| updated_at | 2025-07-13 13:19:30.664908+00 |
| description | QuDAG core networking for Synaptic Neural Mesh - DAG-based consensus and P2P networking |
| homepage | https://github.com/ruvnet/Synaptic-Mesh |
| repository | https://github.com/ruvnet/Synaptic-Mesh |
| max_upload_size | |
| id | 1750507 |
| size | 42,858 |
Core DAG networking and consensus library for the Synaptic Neural Mesh project.
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();
}
MIT OR Apache-2.0