-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
66 lines (61 loc) · 1.87 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "autoheal-rs"
# don't change this, it's updated before an actual build by update-version.sh
version = "0.0.0-development"
edition = "2021"
rust-version = "1.82.0"
authors = ["Kristof Mattei"]
description = "Monitoring application for docker containers"
license-file = "LICENSE"
categories = ["command-line-utilities"]
keywords = ["docker", "health"]
repository = "https://github.com/kristof-mattei/autoheal-rs"
[lints.clippy]
# don't stop from compiling / running
all = "warn"
pedantic = "warn"
cargo = "warn"
# this one causes confusion when combining variables (`foo`) and
# dereferenced variables (`foo.bar`). The latter cannot be inlined
# so we don't inline anything
uninlined-format-args = { level = "allow", priority = 127 }
[lints.rust]
let_underscore_drop = { level = "deny", priority = 127 }
non_ascii_idents = { level = "deny", priority = 127 }
[profile.dev.package.backtrace]
opt-level = 3
[features]
coverage = []
[dependencies]
backtrace = "0.3.74"
color-eyre = { git = "https://github.com/eyre-rs/eyre", rev = "2dc0688d33a487009e8bc3222cbab135261383b0", features = [
"track-caller",
] }
hashbrown = "0.15.2"
hex = "0.4.3"
http = "1.1.0"
http-body-util = "0.1.2"
hyper = { version = "1.5.1", default-features = false }
hyper-tls = { version = "0.6.0", default-features = false, features = [
"vendored",
] }
hyper-unix-socket = "0.0.0-development"
hyper-util = { version = "0.1.10", default-features = false, features = [
"client-legacy",
"http1",
"tokio",
] }
libc = "0.2.165"
percent-encoding = "2.3.1"
serde = { version = "1.0.215", features = ["derive", "rc"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = [
"rt-multi-thread",
"macros",
"time",
"signal",
"net",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = { version = "2.5.3", features = ["expose_internals"] }