-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (36 loc) · 1.08 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
[package]
name = "todoservice"
authors = ["Dex <dexwritescode@protom.me>"]
version = "1.0.0"
edition = "2021"
rust-version = "1.73"
[dependencies]
config = "0.13.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
axum = { version = "0.6", features = ["headers"] }
tokio = { version = "1", features = ["full"] }
signal-hook = "0.3.16"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
futures = "0.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = [
"registry",
"env-filter",
] }
diesel = { version = "2.1.0", features = ["postgres", "r2d2"] }
dotenvy = "0.15"
tower-http = { version = "0.4.4", features = ["trace"] }
reqwest = { version = "0.11.22", features = ["json"] }
opentelemetry = "0.21.0"
opentelemetry-otlp = { version = "0.14.0", features = [
"reqwest-client",
"reqwest-rustls",
"http-proto",
"tls",
] }
tracing-opentelemetry = "0.22.0"
tonic = { version = "0.10", features = ["tls", "tls-roots"] }
opentelemetry_sdk = { version = "0.21.1", features = ["rt-tokio"] }
[dev-dependencies]
temp-env = "0.3.6"