2022-08-30 16:28:33 +10:00
|
|
|
[package]
|
|
|
|
name = "modbus-mqtt"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Bo Jeanes <me@bjeanes.com>"]
|
2022-08-30 17:00:56 +10:00
|
|
|
description = "A bridge between Modbus devices and MQTT"
|
|
|
|
keywords = ["modbus", "mqtt", "sungrow"]
|
|
|
|
categories = ["network-programming", "command-line-utilities"]
|
|
|
|
homepage = "https://github.com/bjeanes/modbus-mqtt/tree/main/modbus-mqtt"
|
|
|
|
repository = "https://github.com/bjeanes/modbus-mqtt"
|
|
|
|
license = "MIT"
|
2022-08-30 16:28:33 +10:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "1.1.0"
|
|
|
|
clap = { version = "3.2.12", features = ["derive", "env"] }
|
|
|
|
humantime-serde = "1.1.1"
|
|
|
|
itertools = "0.10.3"
|
|
|
|
rumqttc = "0.15.0"
|
|
|
|
rust_decimal = { version = "1.26.1", features = ["serde-arbitrary-precision", "serde-float", "serde_json", "maths"] }
|
|
|
|
serde = { version = "1.0.139", features = ["serde_derive"] }
|
|
|
|
serde_json = "1.0.82"
|
|
|
|
serialport = { version = "4.2.0", features = ["serde"] }
|
|
|
|
tokio = { version = "1.20.0", features = ["rt", "rt-multi-thread", "time"] }
|
|
|
|
tokio-modbus = "0.5.3"
|
|
|
|
tokio-serial = "5.4.3"
|
2022-08-30 17:04:12 +10:00
|
|
|
tokio_modbus-winets = { version = "0.1.0", path = "../tokio_modbus-winets" }
|
2022-08-30 16:28:33 +10:00
|
|
|
tracing = "0.1.36"
|
|
|
|
tracing-subscriber = "0.3.15"
|
|
|
|
uuid = { version = "1.1.2", features = ["v4", "serde"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.2.1"
|