doctor-restart/Cargo.toml

22 lines
568 B
TOML
Raw Normal View History

2024-09-12 10:35:01 +00:00
[package]
name = "doctor-restart"
2024-09-12 16:52:50 +00:00
authors = ["Dmitry Belyaev"]
2024-09-12 10:35:01 +00:00
version = "0.1.0"
2024-09-12 16:52:50 +00:00
description = "restart unhealthy containers"
license-file = "LICENSE"
2024-09-12 10:35:01 +00:00
edition = "2021"
[dependencies]
anyhow = "1.0.88"
bollard = { version = "0.17.1", features = ["ssl", "json_data_content", "tokio-stream"] }
2024-09-12 16:52:50 +00:00
clap = { version = "4.5.17", features = ["derive"] }
clap_derive = "4.5.13"
2024-09-12 16:24:20 +00:00
flexi_logger = "0.29.0"
2024-09-12 10:35:01 +00:00
futures-util = "0.3.30"
2024-09-12 16:24:20 +00:00
log = "0.4.22"
log-panics = "2.1.0"
2024-09-12 16:52:50 +00:00
parse_duration = "2.1.1"
2024-09-12 13:24:55 +00:00
serde = "1.0.210"
2024-09-12 10:35:01 +00:00
tokio = {version = "1.40.0", features = ["full"]}
tokio-macros = "2.4.0"