2022-07-15 17:11:38 +10:00
|
|
|
[package]
|
|
|
|
name = "modbus-mqtt"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-17 18:14:55 +10:00
|
|
|
bytes = "1.1.0"
|
2022-07-15 17:11:38 +10:00
|
|
|
clap = { version = "3.2.12", features = ["derive", "env"] }
|
2022-07-18 11:17:45 +10:00
|
|
|
humantime-serde = "1.1.1"
|
|
|
|
itertools = "0.10.3"
|
2022-07-15 17:11:38 +10:00
|
|
|
rumqttc = { version = "0.13.0", features = ["url"], git = "https://github.com/bytebeamio/rumqtt" }
|
2022-08-14 18:05:48 +10:00
|
|
|
rust_decimal = { version = "1.26.1", features = ["serde-arbitrary-precision", "serde-float", "serde_json", "maths"] }
|
2022-07-17 10:41:56 +10:00
|
|
|
serde = { version = "1.0.139", features = ["serde_derive"] }
|
|
|
|
serde_json = "1.0.82"
|
2022-07-17 19:02:38 +10:00
|
|
|
serialport = { version = "4.2.0", features = ["serde"] }
|
2022-07-18 11:17:45 +10:00
|
|
|
tokio = { version = "1.20.0", features = ["rt", "rt-multi-thread", "time"] }
|
2022-07-15 17:11:38 +10:00
|
|
|
tokio-modbus = "0.5.3"
|
2022-07-17 10:41:56 +10:00
|
|
|
tokio-serial = "5.4.3"
|
2022-08-13 13:58:48 +10:00
|
|
|
tracing = "0.1.36"
|
|
|
|
tracing-subscriber = "0.3.15"
|