Implemented all
This commit is contained in:
21
Cargo.toml
21
Cargo.toml
@@ -2,15 +2,30 @@
|
||||
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 = "1.0.228"
|
||||
serde_json = "1.0.145"
|
||||
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"
|
||||
pedantic = "warn"
|
||||
suspicious = { level = "deny", priority = -1 }
|
||||
perf = { level = "deny", priority = -1 }
|
||||
cargo = "warn"
|
||||
nursery = "warn"
|
||||
restrictions = "warn"
|
||||
|
||||
Reference in New Issue
Block a user