Implementation of firmware for a sprinklers system using async Rust, Tokio, Actix, MQTT and more.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[package]
|
|
|
|
name = "sprinklers_mqtt"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Alex Mikhalev <alexmikhalevalex@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
sprinklers_core = { path = "../sprinklers_core" }
|
|
|
|
sprinklers_actors = { path = "../sprinklers_actors" }
|
|
|
|
|
|
|
|
actix = { version = "0.10.0", default-features = false }
|
|
|
|
eyre = "0.6.0"
|
|
|
|
rumqttc = "0.1.0"
|
|
|
|
tracing = "0.1.19"
|
|
|
|
serde = { version = "1.0.116", features = ["derive", "rc"] }
|
|
|
|
serde_json = "1.0.57"
|
|
|
|
chrono = "0.4.15"
|
|
|
|
num-traits = "0.2.12"
|
|
|
|
num-derive = "0.3.2"
|
|
|
|
futures-util = { version = "0.3.5", default-features = false, features = ["std", "async-await", "sink"] }
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "0.2.22"
|
|
|
|
default-features = false
|
|
|
|
features = []
|