forked from tmknight/docker-autoheal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 992 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
30
31
32
33
34
35
[package]
name = "docker-autoheal"
version = "0.13.7-fix"
authors = ["Journey Over ,Travis M Knight"]
license = "GPL-3.0"
description = "A cross-platform tool to monitor and remediate unhealthy Docker containers"
readme = "README.md"
homepage = "https://github.com/JourneyDocker/docker-autoheal"
edition = "2021"
rust-version = "1.74"
[dependencies]
bollard = { version = "0.*", features = ["ssl"] }
chrono = "0.4.*"
futures = "0.3.*"
getopts = "0.2.*"
libc = "0.2.*"
reqwest = "0.11.*"
serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*"
tokio = { version = "1.*", features = ["full"] }
[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.*", features = ["vendored"] }
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.*", features = ["vendored"] }
[target.aarch64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.*", features = ["vendored"] }
[[bin]]
name = "docker-autoheal"
bench = true
test = true