[package]
edition = "2024"
rust-version = "1.92"
name = "gbp-cli"
version = "1.0.1"
authors = ["Group Protocol Stack contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference CLI binary for the Group Protocol Stack: a minimal smoke runner with `listen` and `connect` modes."
homepage = "https://github.com/F000NKKK/Group-Protocol-Stack"
readme = "README.md"
keywords = [
"gbp",
"cli",
"messaging",
"mls",
]
categories = [
"command-line-utilities",
"cryptography",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/F000NKKK/Group-Protocol-Stack"
resolver = "2"
[[bin]]
name = "gbp-node"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.gbp-stack]
version = "1.0.1"
[dependencies.hex]
version = "0.4"
[dependencies.openmls]
version = "0.8"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]