async-stomp 0.6.3

An asynchronous streaming STOMP client
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 = "async-stomp"
version = "0.6.3"
authors = [
    "Mattias Eriksson <snaggen@mayam.com>",
    "Alex Whitney <adwhit@fastmail.com>",
    "Jens Walter <jens@apimeister.com>",
    "Alexander Kunde <a.kunde@outlook.com>",
    "Jacques Joubert <jjoubert@kigo.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An asynchronous streaming STOMP client"
homepage = "https://github.com/snaggen/async-stomp"
readme = "README.md"
keywords = [
    "stomp",
    "tokio",
    "streaming",
    "async",
]
categories = [
    "network-programming",
    "parser-implementations",
]
license = "EUPL-1.2"
repository = "https://github.com/snaggen/async-stomp"

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

[[example]]
name = "connect"
path = "examples/connect.rs"

[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"

[[example]]
name = "receive_message"
path = "examples/receive_message.rs"

[[example]]
name = "secure_connect"
path = "examples/secure_connect.rs"

[[example]]
name = "send_message"
path = "examples/send_message.rs"

[[test]]
name = "client"
path = "tests/client.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bytes]
version = "1.11.1"

[dependencies.custom_debug_derive]
version = "0.6.2"

[dependencies.futures]
version = "0.3"

[dependencies.rustls]
version = "0.23.36"

[dependencies.tokio]
version = "1"
features = ["net"]

[dependencies.tokio-rustls]
version = "0.26.4"

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

[dependencies.typed-builder]
version = "=0.23.2"

[dependencies.webpki-roots]
version = "1.0.6"

[dependencies.winnow]
version = "0.7"

[dev-dependencies.tokio]
version = "1"
features = [
    "time",
    "macros",
    "rt-multi-thread",
]