# 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 = "2021" rust-version = "1.64" name = "amqprs" version = "2.1.0" build = false exclude = [ "*.profraw", "*.profdata", ] autobins = false autoexamples = false autotests = false autobenches = false description = "AMQP 0-9-1 client implementation for RabbitMQ" documentation = "https://docs.rs/amqprs/latest/amqprs/" readme = "README.md" keywords = [ "amqp", "rabbitmq", "async", "tokio", "lock-free", ] categories = [ "network-programming", "asynchronous", ] license = "MIT" repository = "https://github.com/gftea/amqprs" [package.metadata.docs.rs] all-features = true [lib] name = "amqprs" path = "src/lib.rs" [[test]] name = "test_callback" path = "tests/test_callback.rs" [[test]] name = "test_consume" path = "tests/test_consume.rs" [[test]] name = "test_get" path = "tests/test_get.rs" [[test]] name = "test_heartbeat" path = "tests/test_heartbeat.rs" [[test]] name = "test_io_error_handling" path = "tests/test_io_error_handling.rs" [[test]] name = "test_mixed_type_consumers" path = "tests/test_mixed_type_consumers.rs" [[test]] name = "test_publish" path = "tests/test_publish.rs" [[test]] name = "test_publish_return" path = "tests/test_publish_return.rs" [dependencies.amqp_serde] version = "0.4.1" [dependencies.async-trait] version = "0.1" [dependencies.bytes] version = "1.2" [dependencies.rustls-pemfile] version = "2.1.2" optional = true [dependencies.rustls-pki-types] version = "1.7.0" optional = true [dependencies.rustls-webpki] version = "0.102" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_bytes] version = "0.11" [dependencies.tokio] version = "1" features = [ "rt", "rt-multi-thread", "sync", "net", "io-util", "time", "macros", ] [dependencies.tokio-rustls] version = "0.26" optional = true [dependencies.tracing] version = "0.1" optional = true [dependencies.uriparse] version = "0.6" optional = true [dependencies.webpki-roots] version = "0.26" optional = true [dev-dependencies.tracing] version = "0.1" [dev-dependencies.tracing-subscriber] version = "0.3" features = ["env-filter"] [features] compliance_assert = [] default = [] tls = [ "tokio-rustls", "rustls-pemfile", "webpki-roots", "rustls-pki-types", "rustls-webpki", ] traces = ["tracing"] urispec = ["uriparse"]