-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (22 loc) · 837 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
[package]
name = "poem-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
chrono = "0.4.23"
dotenv = "0.15.0"
opentelemetry = { version = "0.18.0", features = ["metrics", "rt-tokio"] }
opentelemetry-jaeger = {version = "0.17.0",features = ["rt-tokio"]}
poem = "1.3.50"
redis = { version = "0.22.1", features = ["tokio-comp"] }
serde = { version = "1.0.150", features = ["derive"] }
serde_json = "1.0.89"
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres", "uuid", "chrono"] }
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread", "signal"] }
toml = "0.5.9"
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-opentelemetry = "0.18.0"
tracing-subscriber = "0.3.16"