[package]
edition = "2024"
rust-version = "1.88"
name = "ntex-codec"
version = "1.2.0"
authors = ["ntex contributors <team@ntex.rs>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for encoding and decoding frames"
homepage = "https://ntex.rs"
documentation = "https://docs.rs/ntex-codec/"
readme = false
keywords = [
"network",
"framework",
"async",
"futures",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ntex-rs/ntex.git"
resolver = "2"
[lib]
name = "ntex_codec"
path = "src/lib.rs"
[dependencies.ntex-bytes]
version = "1.6.0"
[lints.rust]
missing_debug_implementations = "deny"
rust_2018_idioms = "deny"
unreachable_pub = "deny"
warnings = "deny"
[lints.rust.async_fn_in_trait]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = -2
check-cfg = ["cfg(docsrs_dep)"]