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.
31 lines
902 B
31 lines
902 B
[package] |
|
name = "sprinklers_rs" |
|
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] |
|
rusqlite = "0.24.0" |
|
color-eyre = "0.5.1" |
|
eyre = "0.6.0" |
|
thiserror = "1.0.20" |
|
tokio = { version = "0.2.22", features = ["rt-core", "time", "stream", "sync", "signal", "macros", "test-util"] } |
|
tracing = { version = "0.1.19", features = ["log"] } |
|
tracing-futures = "0.2.4" |
|
pin-project = "0.4.23" |
|
im = "15.0.0" |
|
chrono = { version = "0.4.15" } |
|
assert_matches = "1.3.0" |
|
serde = { version = "1.0.116", features = ["derive"] } |
|
serde_json = "1.0.57" |
|
|
|
[dependencies.rumqttc] |
|
git = "https://github.com/bytebeamio/rumqtt.git" |
|
rev = "814dc891" |
|
|
|
[dependencies.tracing-subscriber] |
|
version = "0.2.11" |
|
default-features = false |
|
features = ["registry", "fmt", "env-filter", "ansi"]
|
|
|