1
0
Fork 0
modbusmqtt/Cargo.toml

31 lines
1.1 KiB
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]
async-trait = "0.1.57"
2022-07-17 18:14:55 +10:00
bytes = "1.1.0"
clap = { version = "3.2.12", features = ["derive", "env"] }
futures-util = "0.3.23"
2022-07-18 11:17:45 +10:00
humantime-serde = "1.1.1"
itertools = "0.10.3"
reqwest = { version = "0.11.11", features = ["rustls-tls-native-roots", "json"], default-features = false }
2022-08-27 06:42:12 +10:00
rumqttc = "0.15.0"
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"] }
tokio-modbus = "0.5.3"
2022-07-17 10:41:56 +10:00
tokio-serial = "5.4.3"
tokio-tungstenite = { version = "0.17.2", features = ["rustls-tls-native-roots"] }
2022-08-13 13:58:48 +10:00
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
uuid = { version = "1.1.2", features = ["v4", "serde"] }
2022-08-27 06:12:50 +10:00
[dev-dependencies]
pretty_assertions = "1.2.1"