-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
28 lines (27 loc) · 826 Bytes
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
[package]
name = "news_rest_api"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-http = "3.9.0"
actix-rt = "2.10.0"
actix-web = "4.9.0"
bcrypt = "0.16.0"
chrono = { version = "0.4.39", features = ["serde"] }
derive_more = { version = "1.0.0", features = ["full"] }
diesel = { version = "2.2.6", features = ["r2d2", "postgres", "chrono"]}
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
dotenvy = "0.15.7"
futures = "0.3.31"
jsonwebtoken = "9.3.0"
log = "0.4.25"
once_cell = "1.20.2"
postgres = "0.19.9"
r2d2 = "0.8.10"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
thiserror = "2.0.11"
tokio = { version = "1.0", features = ["full"] }
tokio-macros = "2.5.0"
uuid = { version = "1.11.0", features = ["v4"] }
validator = { version = "0.19.0", features = ["derive"] }