-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (44 loc) · 1.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = [
"src/domain",
"src/infrastructure",
"src/application",
"src/presentation",
"src/starter"
]
resolver = "2"
[workspace.dependencies]
# Web
actix-web = "4.9.0"
# OpenAPI
utoipa = { version = "5.3.1", features = ["actix_extras", "uuid"] }
utoipa-actix-web = "0.1.2"
utoipa-swagger-ui = { version = "8.1.1", features = ["actix-web"] }
# Serialization
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
# Async
tokio = { version = "1.43.0", features = ["full"] }
async-trait = "0.1.85"
# Database and ORM
tokio-postgres = { version = "0.7.12", features = ["with-uuid-1"] }
diesel = { version = "2.0.0", features = ["postgres", "r2d2", "uuid"] }
diesel_migrations = "2.0.0"
# Logging
log = "0.4.25"
env_logger = "0.11.6"
# Configuration
dotenv = "0.15.0"
config = "0.15.6"
# Error Handling
anyhow = "1.0.95"
thiserror = "2.0.11"
# Testing
testcontainers = "0.23.1"
testcontainers-modules = { version = "0.11.5", features = ["postgres"] }
reqwest = { version = "0.12.11", features = ["json"]}
serial_test = "3.2.0"
# Misc
ctor = "0.2.9"
uuid = { version = "1.12.0", features = ["v4", "serde"] }
readonly = "0.2.12"