-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 1.01 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
[package]
name = "codefee-works-api"
description = "Experimental APIs for Codefee Works"
version = "0.1.0"
edition = "2021"
[dependencies]
# Actix
actix-web = "4"
actix-cors = "0.6.4"
# Tracing
tracing-actix-web = { version = "0.7", features = ["opentelemetry_0_17"] }
tracing = "0.1"
opentelemetry = { version = "0.17", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.16", features = [
"rt-tokio-current-thread",
] }
tracing-opentelemetry = { version = "0.17" }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3"
# DB
diesel = { version = "2.0.2", features = ["postgres", "r2d2"] }
postgres = "0.19.4"
r2d2 = "0.8.10"
# Open API (with utoipa)
utoipa = { version = "3.0.3", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "3.0.2", features = ["actix-web"] }
# Others
derive_more = { version = "0.99.0", features = ["display", "error"] }
dotenv = "0.15.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"