All checks were successful
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 5s
Rust Cross-Platform Build / Set Tag Name (push) Successful in 5s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m10s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 3m9s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 3m54s
Rust Cross-Platform Build / Build and Push Docker Image (push) Successful in 2m12s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 1s
Rust Cross-Platform Build / Create Tag (push) Successful in 4s
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "WatcherAgent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Patrick Mahnke-Hartmann <https://github.com/donpat1to>"]
|
|
description = "A client heartbeat sender for CS monitoring"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
local-ip-address = "0.5"
|
|
reqwest = { version = "0.12.23", default-features = false, features = ["json", "blocking", "cookies", "rustls-tls"] }
|
|
sysinfo = "0.36.1"
|
|
metrics = "0.24.2"
|
|
chrono = "0.4"
|
|
nvml-wrapper = "0.11"
|
|
nvml-wrapper-sys = "0.9.0"
|
|
anyhow = "1.0.98"
|
|
|
|
regex = "1.11.3"
|
|
|
|
# Docker .env loading
|
|
# config = "0.13"
|
|
|
|
# Docker API access
|
|
bollard = "0.19"
|
|
futures-util = "0.3"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["winuser", "pdh", "ifmib", "iphlpapi", "winerror" ,"wbemcli", "combaseapi"] }
|
|
systemstat = "0.2.5"
|
|
com = "0.2"
|
|
widestring = "0.5"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
glob = "0.3"
|
|
libloading = "0.8"
|
|
|
|
[build-dependencies]
|
|
pkg-config = { version = "0.3", optional = true } # Für Library-Detektion |