2023-06-13 13:02:49 +00:00
|
|
|
[package]
|
|
|
|
name = "prymn_agent"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.71"
|
2023-08-12 09:37:01 +00:00
|
|
|
chrono = "0.4.26"
|
2023-06-30 07:25:53 +00:00
|
|
|
clap = { version = "4.3.9" }
|
2023-07-20 19:04:51 +00:00
|
|
|
envy = "0.4.2"
|
2023-08-12 09:37:01 +00:00
|
|
|
itertools = "0.11.0"
|
2023-09-03 12:02:37 +00:00
|
|
|
nix = "0.27.1"
|
2023-07-20 19:04:51 +00:00
|
|
|
once_cell = "1.18.0"
|
2023-06-13 13:02:49 +00:00
|
|
|
prost = "0.11.9"
|
2023-10-07 15:12:56 +00:00
|
|
|
reqwest = { version = "0.11.18", features = ["blocking", "json"], default-features = false }
|
2023-07-20 19:04:51 +00:00
|
|
|
serde = { version = "1.0.173", features = ["derive"] }
|
|
|
|
serde_json = "1.0.103"
|
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-08-12 09:37:01 +00:00
|
|
|
tokio-stream = { version = "0.1.14", features = ["net", "sync"] }
|
2023-10-07 15:12:56 +00:00
|
|
|
tonic = { version = "0.9.2" }
|
2023-08-23 15:04:28 +00:00
|
|
|
tower-http = { version = "0.4.3", features = ["trace"] }
|
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"
|