25 lines
721 B
TOML
25 lines
721 B
TOML
[package]
|
|
name = "cm-dashboard-agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cm-dashboard-shared = { path = "../shared" }
|
|
anyhow = "1.0"
|
|
async-trait = "0.1"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde", "clock"] }
|
|
chrono-tz = "0.8"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
tracing-appender = "0.2"
|
|
zmq = "0.10"
|
|
tokio = { version = "1.0", features = ["full", "process"] }
|
|
futures = "0.3"
|
|
rand = "0.8"
|
|
gethostname = "0.4"
|
|
lettre = { version = "0.11", default-features = false, features = ["smtp-transport", "builder"] }
|