[package]
edition = "2024"
rust-version = "1.88"
name = "ntex-amqp-codec"
version = "2.3.0"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Max Gortman <mgortman@microsoft.com>",
"Mike Yagley <myagley@gmail.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AMQP 1.0 Protocol Codec"
readme = "README.md"
license = "MIT/Apache-2.0"
[features]
default = []
from-spec = [
"handlebars",
"serde",
"serde_derive",
"serde_json",
"lazy_static",
"regex",
]
[lib]
name = "ntex_amqp_codec"
path = "src/lib.rs"
[dependencies.byteorder]
version = "1"
[dependencies.chrono]
version = "0.4"
default-features = false
[dependencies.derive_more]
version = "2"
features = ["from"]
[dependencies.ntex-bytes]
version = "1.6.4"
[dependencies.ntex-codec]
version = "1.2"
[dependencies.ntex-util]
version = "3"
[dependencies.ordered-float]
version = "5"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.test-case]
version = "3"
[build-dependencies.handlebars]
version = "6"
optional = true
[build-dependencies.lazy_static]
version = "1"
optional = true
[build-dependencies.regex]
version = "1"
optional = true
[build-dependencies.serde]
version = "1"
optional = true
[build-dependencies.serde_derive]
version = "1"
optional = true
[build-dependencies.serde_json]
version = "1"
optional = true
[lints.rust]
rust_2018_idioms = "deny"
unreachable_pub = "deny"
warnings = "deny"
[lints.rust.async_fn_in_trait]
level = "allow"
priority = -1