ramqp 0.8.2

Async AMQP 1.0 client for Rust on tokio — connects to RabbitMQ 4.x, ActiveMQ Artemis, and other AMQP 1.0 brokers.
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 = "ramqp"
version = "0.8.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async AMQP 1.0 client for Rust on tokio — connects to RabbitMQ 4.x, ActiveMQ Artemis, and other AMQP 1.0 brokers."
readme = "README.md"
keywords = [
    "amqp",
    "amqp1",
    "messaging",
    "tokio",
    "async",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/ZerosAndOnesLLC/rAMQP"
resolver = "2"

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

[features]
default = []
native-tls = [
    "dep:tokio-native-tls",
    "dep:native-tls",
]
rustls = [
    "dep:tokio-rustls",
    "dep:rustls",
    "dep:webpki-roots",
]
scram = [
    "ramqp-core/scram",
    "dep:base64",
]
transaction = ["ramqp-core/transaction"]
ws = [
    "dep:tokio-tungstenite",
    "dep:http",
]

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

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

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

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

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

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

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

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

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

[[bench]]
name = "codec"
path = "benches/codec.rs"
harness = false

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.bytes]
version = "1"

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

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

[dependencies.http]
version = "1"
optional = true

[dependencies.native-tls]
version = "0.2"
optional = true

[dependencies.ordered-float]
version = "5"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.ramqp-core]
version = "0.2.5"

[dependencies.rustls]
version = "0.23"
features = [
    "ring",
    "std",
    "tls12",
]
optional = true
default-features = false

[dependencies.slab]
version = "0.4"

[dependencies.thiserror]
version = "2"

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

[dependencies.tokio-native-tls]
version = "0.3"
optional = true

[dependencies.tokio-rustls]
version = "0.26"
features = [
    "ring",
    "tls12",
]
optional = true
default-features = false

[dependencies.tokio-tungstenite]
version = "0.29"
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.url]
version = "2"

[dependencies.uuid]
version = "1"
features = ["v4"]

[dependencies.webpki-roots]
version = "1"
optional = true

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

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

[dev-dependencies.tokio-tungstenite]
version = "0.29"