[package]
edition = "2024"
name = "topiq-protocol"
version = "0.1.3"
authors = ["Elwqnn <elwann.guillemot@epitech.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wire protocol for the topiq message broker"
homepage = "https://github.com/Elwqnn/topiq"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Elwqnn/topiq"
[lib]
name = "topiq_protocol"
path = "src/lib.rs"
[[bench]]
name = "protocol_benchmarks"
path = "benches/protocol_benchmarks.rs"
harness = false
[dependencies.bytes]
version = "1"
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.topiq-core]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.tokio-test]
version = "0.4"