[package]
edition = "2021"
rust-version = "1.88"
name = "matter-interaction"
version = "0.4.0"
authors = ["matter-rust contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Matter Interaction Model message framing: invoke, read, and write request/response encoding."
homepage = "https://github.com/phunapps/matter-rust"
readme = "README.md"
keywords = [
"matter",
"iot",
"smart-home",
"interaction-model",
]
categories = [
"network-programming",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/phunapps/matter-rust"
[lib]
name = "matter_interaction"
path = "src/lib.rs"
[[test]]
name = "chunk_byte_parity"
path = "tests/chunk_byte_parity.rs"
[[test]]
name = "im_byte_parity"
path = "tests/im_byte_parity.rs"
[[test]]
name = "im_roundtrip"
path = "tests/im_roundtrip.rs"
[[test]]
name = "im_truncation"
path = "tests/im_truncation.rs"
[[bench]]
name = "report_parse"
path = "benches/report_parse.rs"
harness = false
[[bench]]
name = "write_chunks"
path = "benches/write_chunks.rs"
harness = false
[dependencies.matter-codec]
version = "0.3.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.base64]
version = "0.22"
features = ["alloc"]
default-features = false
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.hex]
version = "0.4"
features = ["alloc"]
default-features = false
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
expect_used = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
missing_safety_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
undocumented_unsafe_blocks = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1