[package]
edition = "2024"
rust-version = "1.88"
name = "coap-message-implementations"
version = "0.2.0"
authors = ["chrysn <chrysn@fsfe.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementations of coap-message traits, and tools for building them"
documentation = "https://docs.rs/coap-message-implementations/"
readme = "README.md"
keywords = [
"coap",
"iot",
]
categories = ["no-std::no-alloc"]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/chrysn/coap-tools"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[badges.maintenance]
status = "actively-developed"
[features]
_nightly_docs = []
alloc = []
defmt = ["dep:defmt"]
downcast = []
[lib]
name = "coap_message_implementations"
path = "src/lib.rs"
[dependencies.coap-message]
version = "0.3.3"
[dependencies.coap-message-utils]
version = "0.3.0"
[dependencies.coap-numbers]
version = "0.2"
[dependencies.defmt]
version = "1"
optional = true
[dependencies.document-features]
version = "0.2"
[dependencies.heapless]
version = "^0.9"
[dependencies.thiserror]
version = "2.0.17"
default-features = false
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1
[lints.clippy.match_same_arms]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.wildcard_imports]
level = "allow"
priority = 1
[lints.rust]
unsafe_code = "deny"