2022-10-19 08:38:51 -07:00
|
|
|
[package]
|
|
|
|
name = "chimemon"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2022-11-22 12:12:09 -08:00
|
|
|
influxdb2 = { version = "0.3.3", features = [
|
|
|
|
"rustls",
|
|
|
|
], default-features = false }
|
|
|
|
tokio = { version = "1", features = ["rt", "io-util"] }
|
2022-10-19 08:38:51 -07:00
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
log = "0.4"
|
|
|
|
figment = { version = "0.10", features = ["toml"] }
|
|
|
|
gethostname = "0.3"
|
|
|
|
env_logger = "0.9.1"
|
|
|
|
futures = "0.3.24"
|
2022-11-01 01:36:14 -07:00
|
|
|
async-trait = "0.1.58"
|
|
|
|
tokio-stream = { version = "0.1.11", features = ["sync"] }
|
2022-11-22 12:12:09 -08:00
|
|
|
bitflags = "1.3.2"
|
|
|
|
byteorder = "1.4.3"
|
|
|
|
tokio-serial = "5.4.4"
|
|
|
|
bytes = "1.2.1"
|
|
|
|
chrono = "0.4.23"
|
|
|
|
libc = "0.2.137"
|
2022-10-19 08:38:51 -07:00
|
|
|
|
|
|
|
[dependencies.chrony-candm]
|
|
|
|
git = "https://github.com/aws/chrony-candm"
|
|
|
|
branch = "main"
|