19 lines
760 B
TOML
19 lines
760 B
TOML
[package]
|
|
name = "zabbixlaunch"
|
|
version = "1.0.1"
|
|
edition = "2021"
|
|
authors = ["PaulBSD <paul@paulbsd.com>"]
|
|
description = "Lights up Launchpad mini using Zabbix data"
|
|
repository = "https://git.paulbsd.com/paulbsd/zabbixlaunch"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5" }
|
|
embedded-graphics = { version = "0.8", optional = true }
|
|
launchy = { git = "https://github.com/paulbsd/launchy", branch = "develop-launchpad-mini-mk3" }
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
nix = { version = "0.29", features = ["inotify"] }
|