-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 1.07 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
[package]
name = "nginx-healthchecker"
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.79.0"
[lints.clippy]
incompatible_msrv = "forbid"
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.22", features = ["derive", "unicode"] }
futures = { version = "0.3.31", default-features = false, features = ["std"] }
reqwest = { version = "0.12.9", default-features = false, features = ["brotli", "charset", "deflate", "gzip", "http2", "json", "macos-system-configuration", "rustls-tls-webpki-roots", "zstd"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["fs", "macros", "rt-multi-thread", "signal", "time"] }
tracing = { version = "0.1.41", features = ["max_level_debug", "release_max_level_debug"] }
tracing-subscriber = { version = "0.3.19", features = ["local-time"] }
[profile.dev.build-override]
codegen-units = 1
overflow-checks = true
[profile.release]
codegen-units = 1
lto = true
overflow-checks = true
[profile.release.build-override]
codegen-units = 1
overflow-checks = true