-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 999 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
[package]
name = "psql-query-exporter"
version = "0.2.25"
edition = "2021"
authors = ["Oleksii Karpenko <[email protected]>"]
description = "PostgreSQL Query Prometheus exporter"
repository = "https://github.com/alex-karpenko/psql-query-exporter"
license = "MIT OR Apache-2.0"
keywords = ["postgres", "postgresql", "prometheus", "exporter"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
figment = { version = "0.10.19", features = ["yaml", "env"] }
human-repr = "1.1.0"
humantime-serde = "1.1.1"
openssl = "0.10.68"
openssl-sys = "0.9.104"
postgres-openssl = "0.5.0"
prometheus = "0.13.4"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.4"
tokio = { version = "1.42.0", features = ["full"] }
tokio-postgres = "0.7.12"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
warp = "0.3.7"