1
0
Fork 0
modbusmqtt/Cargo.toml

17 lines
553 B
TOML
Raw Normal View History

[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"
clap = { version = "3.2.12", features = ["derive", "env"] }
rumqttc = { version = "0.13.0", features = ["url"], git = "https://github.com/bytebeamio/rumqtt" }
2022-07-17 10:41:56 +10:00
serde = { version = "1.0.139", features = ["serde_derive"] }
serde_json = "1.0.82"
tokio = { version = "1.20.0", features = ["rt", "rt-multi-thread"] }
tokio-modbus = "0.5.3"
2022-07-17 10:41:56 +10:00
tokio-serial = "5.4.3"