[package]
edition = "2024"
rust-version = "1.85.0"
name = "hoy-protocol"
version = "0.2.0"
authors = ["mrbya <v.toth.svk2@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hoy real-time chat protocol crate"
homepage = "https://gitlab.com/byacrates/hoy.git"
readme = "README.md"
keywords = [
"hoy",
"chat",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/byacrates/hoy.git"
[package.metadata.cargo-udeps.ignore]
development = [
"criterion",
"pretty_assertions",
]
[package.metadata.playground]
features = ["full"]
[lib]
name = "hoy_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.hoy-test]
version = "0.1.1"
[dev-dependencies.pretty_assertions]
version = "1"
[lints.clippy]
multiple_crate_versions = "allow"