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_actors"
|
|
|
|
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" }
|
|
|
|
actix = { version = "0.10.0", default-features = false }
|
|
|
|
thiserror = "1.0.20"
|
|
|
|
tracing = "0.1.19"
|
|
|
|
chrono = { version = "0.4.15" }
|
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
|
|
im = "15.0.0"
|
|
|
|
eyre = "0.6.0"
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "0.2.22"
|
|
|
|
default-features = false
|
|
|
|
features = []
|
|
|
|
|
|
|
|
[dependencies.futures-util]
|
|
|
|
version = "0.3.5"
|
|
|
|
default-features = false
|
|
|
|
features = ["std", "async-await", "sink"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "1.1.1"
|
|
|
|
tokio = { version = "0.2.22", features = ["test-util"] }
|
|
|
|
assert_matches = "1.3.0"
|
|
|
|
|
|
|
|
[dev-dependencies.tracing-subscriber]
|
|
|
|
version = "0.2.11"
|
|
|
|
default-features = false
|
|
|
|
features = ["registry"]
|