mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Will Pfleger <wpfleger@block.xyz> Signed-off-by: Will Pfleger <pfleger.will@gmail.com> Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co>
81 lines
1.7 KiB
TOML
81 lines
1.7 KiB
TOML
[package]
|
|
name = "buzz-acp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "ACP harness that bridges Buzz events to AI agents"
|
|
|
|
[lib]
|
|
name = "buzz_acp"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "buzz-acp"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Internal
|
|
buzz-core = { workspace = true }
|
|
buzz-sdk = { workspace = true }
|
|
buzz-persona = { path = "../buzz-persona" }
|
|
|
|
# Nostr
|
|
nostr = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
|
|
# WebSocket
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
# Codec (bounded line reads)
|
|
tokio-util = { workspace = true }
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
|
|
futures-util = { workspace = true }
|
|
|
|
# HTTP (channel discovery REST API)
|
|
reqwest = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# IDs
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# URL parsing
|
|
url = { workspace = true }
|
|
|
|
# NIP-98 HTTP auth signing
|
|
sha2 = { workspace = true }
|
|
base64 = "0.22"
|
|
hex = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
# CLI
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
# Config file
|
|
toml = "1.0"
|
|
|
|
# Filter expressions
|
|
evalexpr = { workspace = true }
|
|
|
|
# Process-group kill (safe wrapper around killpg) — Unix-only; kill_process_group
|
|
# has a #[cfg(not(unix))] fallback in acp.rs.
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { version = "0.31", default-features = false, features = ["signal"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util"] }
|