2023-06-13 13:02:49 +00:00
|
|
|
[package]
|
|
|
|
name = "prymn_agent"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.71"
|
2023-06-30 07:25:53 +00:00
|
|
|
clap = { version = "4.3.9" }
|
2023-07-09 16:58:51 +00:00
|
|
|
nix = "0.26.2"
|
2023-06-13 13:02:49 +00:00
|
|
|
prost = "0.11.9"
|
2023-07-13 12:33:15 +00:00
|
|
|
reqwest = { version = "0.11.18", features = ["blocking", "rustls-tls"], default-features = false }
|
2023-07-09 16:58:51 +00:00
|
|
|
serde_json = "1.0.99"
|
2023-06-13 13:02:49 +00:00
|
|
|
sysinfo = { version = "0.29.2", default-features = false }
|
2023-06-30 07:25:53 +00:00
|
|
|
tokio = { version = "1.28.2", features = ["rt-multi-thread", "io-util", "process", "macros", "signal"] }
|
2023-06-15 10:55:24 +00:00
|
|
|
tokio-stream = { version = "0.1.14", features = ["net"] }
|
2023-07-13 12:33:15 +00:00
|
|
|
tonic = { version = "0.9.2", features = ["tls"] }
|
2023-06-19 11:34:09 +00:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = "0.3.17"
|
2023-06-13 13:02:49 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tonic-build = "0.9.2"
|