-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 866 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "cloudwatch_metrics_agent"
version = "0.1.8"
edition = "2021"
authors = ["theirix <theirix@gmail.com>"]
repository = "https://github.com/theirix/cloudwatch_metrics_agent"
license = "MIT"
readme = "README.md"
description = "An agent for sending custom CPU and memory metrics to Cloudwatch"
categories = ["command-line-utilities"]
keywords = ["aws", "metrics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aws-config = ">= 1.2.0, < 2"
aws-sdk-cloudwatch = ">= 1.23.0, <2"
tokio = { version = "1", features = ["full"] }
sysinfo = "0.30.11"
chrono = "0.4.19"
more-asserts = "0.3.1"
async-trait = "0.1.52"
rstats = "^1.3"
log = "~0.4"
env_logger = { version = "~0.11", features = ["auto-color"] }
clap = { version = "~4", features = ["derive"] }
[dev-dependencies]
test-log = "0.2.8"