Files
protocol_300/Cargo.toml
2025-12-07 16:50:10 +01:00

33 lines
843 B
TOML

[package]
name = "protocol_300"
version = "0.1.0"
edition = "2024"
description = "Crate to encode/decode and send/receive telegrams using the Protocol 300 by Viessmann to communicate with most of their control units"
license = "GPLv3"
repository = "gitea.tobasmaier.me/tobimai/protocol_300"
readme = "README.md"
keywords = ["decode", "encode", "serial"]
categories = ["encoding", "decoding"]
[features]
default = ["std"]
std = []
json = ["serde_json"]
[dependencies]
serde = { version = "1.0"}
serde_json = { version = "1.0", optional = true }
thiserror = "2.0.17"
chrono = { version = "0.4", features = ["serde"] }
enum_stringify = "0.6.4"
num_enum = "0.7.5"
log = { version = "0.4" }
[lints.clippy]
pedantic = "warn"
suspicious = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
cargo = "warn"
nursery = "warn"