-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (25 loc) · 979 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
25
26
[package]
name = "rust-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4.3.1"
actix-session = { version = "0.7.2", features = ["redis-rs-session"]}
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "macros", "chrono", "uuid"] }
serde = { version = "1", features = ["derive"] }
serde_urlencoded = "0.7.1"
bcrypt = "0.14.0"
dotenvy = "0.15.7"
validator = { version = "0.16.0", features = ["derive"] }
opentelemetry = { version = "0.17", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.16", features = ["rt-tokio-current-thread"] }
tracing = { version = "0.1", features = ["log"] }
tracing-opentelemetry = { version = "0.17" }
tracing-bunyan-formatter = "0.3.7"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-actix-web = "0.7"
jsonwebtoken = "8"
lettre = "0.10.4"
chrono= "0.4.24"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
actix-cors = "0.6.4"