-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (43 loc) · 1.05 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
[package]
name = "persistent-gauge"
version = "0.1.0"
authors = ["byblakeorriver"]
edition = "2021"
[dependencies]
# axum web framework
axum = "0.4.8"
# tower
tower = "0.4.12"
# diesel ORM
diesel = { version = "1.4.8", features = ["mysql", "r2d2", "chrono"] }
#time
chrono = { version = "0.4.19", features = ["serde"] }
chrono-tz = "0.6.1"
# r2d2
r2d2 = "0.8.9"
# runtime
tokio = { version = "1.17.0", features = ["rt-multi-thread", "time", "fs", "macros", "net"] }
#utility
serde = { version = "1.0.136", features = ["derive"] }
lazy_static = "1.4.0"
#operational
envy = "0.4.2"
opentelemetry = { version = "0.17.0", features = ["metrics", "rt-tokio"] }
opentelemetry-prometheus = "0.10.0"
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] }
opentelemetry-http = "0.6.0"
prometheus = "0.13.0"
# logging
log = "0.4.14"
slog = "2.7.0"
slog-json = "2.6.0"
slog-async = "2.7.0"
slog-stdlog = "4.1.0"
slog-scope = "4.4.0"
[lib]
name = "persistent_gauge"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "persistent-gauge"
path = "src/main.rs"