Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/buzz-acp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ path = "src/main.rs"
buzz-core = { workspace = true }
buzz-sdk = { workspace = true }
buzz-persona = { path = "../buzz-persona" }
buzz-workflow = { workspace = true }

# Nostr
nostr = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions crates/buzz-acp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ mod queue;
mod relay;
mod setup_mode;
mod usage;
// Isolated workflow-delivery verifier (node E). Pure verification only; no
// production caller exists yet — the capability-gated runtime (node F) wires
// it. `pub` so the module is part of the crate's checked/tested surface.
pub mod verifier;

pub use usage::TurnUsage;

Expand Down
Loading
Loading