Files
protocol_300/Cargo.toml
2025-11-11 22:39:18 +01:00

32 lines
833 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]
# 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 = "0.4.28"
[lints.clippy]
pedantic = "warn"
suspicious = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
cargo = "warn"
nursery = "warn"
restrictions = "warn"