-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (29 loc) · 1.23 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
[package]
name = "sozu-prometheus-connector"
description = "This application retrieve internals metrics of Sōzu and format them into prometheus"
homepage = "https://github.com/CleverCloud/sozu-prometheus-connector"
documentation = "https://github.com/CleverCloud/sozu-prometheus-connector/blob/main/README.md"
version = "0.2.3"
rust-version = "1.80.0"
edition = "2021"
license-file = "LICENSE"
authors = ["Emmanuel Bosquet <emmanuel.bosquet@clever-cloud.com>", "Florentin Dubois <florentin.dubois@clever-cloud.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "^0.7.4", features = ["tokio"] }
config = "^0.14.0"
clap = { version = "^4.4.18", features = ["derive"] }
mime = "^0.3.17"
paw = "^1.0.0"
prometheus = "^0.13.3"
serde = { version = "^1.0.195", features = ["derive"] }
serde_json = "^1.0.111"
sentry = { version = "^0.34.0", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls"] }
sentry-tracing = "^0.34.0"
sozu-client = "0.4.3"
sozu-command-lib = "1.0.5"
thiserror = "^1.0.56"
tokio = { version = "^1.35.1", features = ["macros", "rt", "signal"] }
tracing = "^0.1.40"
tracing-subscriber = "^0.3.18"
urlencoding = "2.1.3"