bb-ops 0.3.4

Canonical concrete components for the bytesandbrains framework — syscalls, wire transport, backends, protocols, role implementations.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `peers` syscall category — DAG-mutable `AddressBook` ops.
//!
//! `ai.bytesandbrains.address_book`-domain custom ops emitted by
//! [`bb_derive::register_op`] — `Insert`, `InsertMany`, `Lookup`.
//! Single-address `Insert` is the common transport-learn case
//! (observed source from one envelope); `InsertMany` carries the
//! full advertised bag from identity-announcement sites; `Lookup`
//! emits the full ordered slice so callers that want a single
//! address pick one explicitly.
//!
//! Spec: `docs/ADDRESSING.md` — "DAG-mutable AddressBook".

pub mod insert;
pub mod insert_many;
pub mod lookup;