2026-04-16 14:56:36 -04:00
|
|
|
[package]
|
2026-06-10 19:29:51 -04:00
|
|
|
name = "buzz-pairing-cli"
|
2026-04-16 14:56:36 -04:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
description = "CLI tool for NIP-AB device pairing interop testing"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
2026-06-10 19:29:51 -04:00
|
|
|
name = "buzz-pair"
|
2026-04-16 14:56:36 -04:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-06-10 19:29:51 -04:00
|
|
|
buzz-core = { workspace = true }
|
2026-04-16 14:56:36 -04:00
|
|
|
nostr = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
|
futures-util = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
url = { workspace = true }
|
|
|
|
|
hex = { workspace = true }
|
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
zeroize = { workspace = true }
|