-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (50 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
53 lines (50 loc) · 1.56 KB
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
[package]
name = "distributed-metrics"
version = "1.2.3"
edition = "2021"
repository = "https://github.com/BitpingApp/distributed-metrics"
homepage = "https://bitping.com"
authors = ["Firaenix <Nick.Carton@gmail.com>"]
description = "A monitoring tool backed by Bitping's distributed network, exposed as a Prometheus metrics endpoint"
[dependencies]
progenitor = { version = "0.9.0", features = [] }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"stream",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive", "rc"] }
tokio = { version = "1.40.0", features = ["full"] }
serde_json = { version = "1" }
eyre = "0.6.12"
keshvar = { version = "0.5.0", features = [
"search-country-code",
"iso-currency-integration",
"geo",
"subdivisions",
"serde-derive",
] }
strum = { version = "0.27", features = ["derive"] }
figment = { version = "0.10", features = ["toml", "yaml", "env"] }
color-eyre = "0.6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
regress = { version = "0.10.1", features = [] }
metrics = "0.24.1"
metrics-exporter-prometheus = "0.17.0"
metrics-dashboard = "0.3.3"
poem = { version = "3.1.5", features = ["rustls"] }
metrics-util = "0.20.1"
humantime-serde = "1.1.1"
serde_regex = "1.1.0"
thiserror = "2.0.9"
geohash = "0.13.1"
prometheus-reqwest-remote-write = "0.5"
prometheus-parse = "0.2"
chrono = "0.4"
[dev-dependencies]
testcontainers = { version = "0.27", features = ["http_wait"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"