topiq 0.1.3

Lightweight TCP-based pub/sub message broker
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "topiq"
version = "0.1.3"
authors = ["Elwqnn <elwann.guillemot@epitech.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight TCP-based pub/sub message broker"
homepage = "https://github.com/Elwqnn/topiq"
documentation = "https://docs.rs/topiq"
readme = "README.md"
keywords = [
    "topiq",
    "messaging",
    "tcp",
    "async",
    "broker",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Elwqnn/topiq"

[features]
default = []
server = [
    "dep:topiq-broker",
    "dep:topiq-transport-tcp",
    "dep:tokio-util",
]

[lib]
name = "topiq"
path = "src/lib.rs"

[[example]]
name = "chat-client"
path = "examples/chat-client.rs"

[[example]]
name = "chat-server"
path = "examples/chat-server.rs"
required-features = ["server"]

[dependencies.bytes]
version = "1"

[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
optional = true

[dependencies.topiq-broker]
version = "0.1"
optional = true

[dependencies.topiq-client]
version = "0.1"

[dependencies.topiq-core]
version = "0.1"

[dependencies.topiq-transport-tcp]
version = "0.1"
optional = true

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.tokio]
version = "1"
features = ["full"]