[package]
edition = "2024"
rust-version = "1.85"
name = "amqp-client-rust"
version = "0.0.6"
authors = ["João Pedro Miranda C. Hluchan <berrytern@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An asynchronous AMQP client library for Rust, designed for high-performance communication with RabbitMQ. Features include automatic queue and exchange management, message publishing, subscribing, and RPC support."
readme = "README.md"
keywords = [
"amqp",
"rabbitmq",
"async",
"tokio",
"reconnection",
]
categories = [
"network-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/berrytern/amqp-client-rust"
resolver = "2"
[features]
default = []
tls = ["amqprs/tls"]
[lib]
name = "amqp_client_rust"
path = "src/lib.rs"
[[test]]
name = "base"
path = "tests/base.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "loop_test"
path = "tests/loop_test.rs"
[dependencies.amqprs]
version = "2"
[dependencies.arc-swap]
version = "1.8"
[dependencies.async-trait]
version = "0.1"
[dependencies.dashmap]
version = "5.3"
[dependencies.flate2]
version = "1.0"
features = ["zlib-rs"]
optional = true
default-features = false
[dependencies.futures]
version = "0.3.32"
[dependencies.lz4_flex]
version = "0.12"
optional = true
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"net",
"io-util",
"time",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.2"
[dependencies.uuid]
version = "1.3"
features = ["v4"]
[dependencies.zstd]
version = "0.13"
optional = true