iridium-stomp 0.3.2

Async STOMP 1.2 client for Rust
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 = "iridium-stomp"
version = "0.3.2"
authors = ["Brad Siegfreid <bsiegfreid@me.com>"]
build = false
include = [
    "src/**",
    "examples/**",
    "docs/**",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async STOMP 1.2 client for Rust"
homepage = "https://github.com/bsiegfreid/iridium-stomp"
documentation = "https://docs.rs/iridium-stomp"
readme = "README.md"
keywords = [
    "stomp",
    "async",
    "messaging",
    "tokio",
    "rabbitmq",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/bsiegfreid/iridium-stomp"

[package.metadata.docs.rs]
all-features = true

[features]
cli = [
    "clap",
    "ratatui",
    "crossterm",
    "chrono",
]
default = []

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

[[bin]]
name = "stomp"
path = "src/bin/stomp.rs"
required-features = ["cli"]

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

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

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

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

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

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = [
    "std",
    "clock",
]
optional = true
default-features = false

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.ratatui]
version = "0.30"
optional = true

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "time",
    "rt-multi-thread",
    "sync",
    "macros",
    "io-std",
    "io-util",
    "signal",
]

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.rand]
version = "0.8"