[package]
edition = "2021"
name = "peaboard"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A private bulletin board on the pea* stack: discovery (peaveil), gossip (peasub), and metadata-private shaping (peashape) in one small CLI."
readme = "README.md"
keywords = [
"p2p",
"gossip",
"privacy",
"discovery",
"bulletin-board",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MIT OR CC0-1.0"
repository = "https://github.com/ljedrz/peaboard"
[[bin]]
name = "peaboard"
path = "src/main.rs"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.peasub]
version = "0.2"
[dependencies.peaveil]
version = "0.1"
[dependencies.tokio]
version = "1"
features = ["full"]