2021-09-05 20:30:24 +02:00
|
|
|
[package]
|
|
|
|
name = "zabbixlaunch"
|
2022-04-29 17:35:33 +02:00
|
|
|
version = "1.0.1"
|
2021-12-09 09:40:43 +01:00
|
|
|
edition = "2021"
|
2022-03-01 18:09:20 +01:00
|
|
|
authors = ["PaulBSD <paul@paulbsd.com>"]
|
|
|
|
description = "Lights up Launchpad mini using Zabbix data"
|
|
|
|
repository = "https://git.paulbsd.com/paulbsd/zabbixlaunch"
|
2021-09-05 20:30:24 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-10 18:27:58 +01:00
|
|
|
clap = "4.1"
|
2021-12-09 09:40:43 +01:00
|
|
|
embedded-graphics = { version = "0.7", optional = true }
|
2023-02-10 18:27:58 +01:00
|
|
|
#launchy = { git = "https://github.com/kangalioo/launchy", branch = "master" }
|
|
|
|
launchy = { path="launchy"}
|
2022-03-01 18:09:20 +01:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
2021-12-09 09:40:43 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2023-02-10 18:27:58 +01:00
|
|
|
nix = "0.26"
|