[package]
edition = "2024"
name = "pubsub-server"
version = "0.1.2"
authors = ["Elwqnn <elwann.guillemot@epitech.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pubsub message broker server binary"
homepage = "https://github.com/Elwqnn/pubsub"
documentation = "https://docs.rs/pubsub-server"
readme = "README.md"
keywords = [
"pubsub",
"messaging",
"tcp",
"async",
"broker",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/Elwqnn/pubsub"
[[bin]]
name = "pubsub-server"
path = "src/main.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.pubsub-broker]
version = "0.1"
[dependencies.pubsub-core]
version = "0.1"
[dependencies.pubsub-transport-tcp]
version = "0.1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.pubsub-client]
version = "0.1"
[dev-dependencies.pubsub-protocol]
version = "0.1"
[dev-dependencies.tokio-test]
version = "0.4"