dotfiles/agent/Cargo.toml
Nikos Papadakis 5d948f4c19 Add health checking system to agent
Adds a health checking endpoint on the GRPC server. This is a stream that changes whenever a health status update occurs.

Reviewed-on: https://git.nikos.gg/prymn/prymn/pulls/5
Co-authored-by: Nikos Papadakis <nikos@papadakis.xyz>
Co-committed-by: Nikos Papadakis <nikos@papadakis.xyz>
2023-08-12 09:37:01 +00:00

29 lines
833 B
TOML

[package]
name = "prymn_agent"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.71"
chrono = "0.4.26"
clap = { version = "4.3.9" }
envy = "0.4.2"
itertools = "0.11.0"
nix = "0.26.2"
once_cell = "1.18.0"
prost = "0.11.9"
reqwest = { version = "0.11.18", features = ["blocking", "rustls-tls", "json"], default-features = false }
serde = { version = "1.0.173", features = ["derive"] }
serde_json = "1.0.103"
sysinfo = { version = "0.29.2", default-features = false }
tokio = { version = "1.28.2", features = ["rt-multi-thread", "io-util", "process", "macros", "signal"] }
tokio-stream = { version = "0.1.14", features = ["net", "sync"] }
tonic = { version = "0.9.2", features = ["tls"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
[dev-dependencies]
tempfile = "3.6.0"
[build-dependencies]
tonic-build = "0.9.2"