-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (47 loc) · 1.38 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
56
57
[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.2.0", features = ["actix_extras", "uuid"] }
utoipa-actix-web = "0.1.2"
utoipa-swagger-ui = { version = "8.0.3", features = ["actix-web"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
uuid = { version = "1.11.0", features = ["v4", "serde"] }
readonly = "0.2.12"
tokio-postgres = { version = "0.7.12", features = ["with-uuid-1"] }
postgres-types = { version = "0.2.8", features = ["uuid-1"] }
refinery = { version = "0.8.14", features = ["tokio-postgres"] }
tokio = { version = "1.41.1", features = ["full"] }
async-trait = "0.1.83"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
quote = "1.0.37"
syn = { version = "2.0.87", features = ["full"] }
serial_test = "3.2.0"
# Logging
log = "0.4.22"
pretty_env_logger = "0.5.0"
env_logger = "0.11.5"
# Configuration
dotenv = "0.15.0"
config = "0.14.1"
# Error Handling
anyhow = "1.0.93"
thiserror = "2.0.1"
# Testing
testcontainers = "0.23.1"
testcontainers-modules = { version = "0.11.4", features = ["postgres"] }
reqwest = { version = "0.12.9", features = ["json"]}
# Misc
once_cell = "1.20.2"
ctor = "0.2.8"
async-std = { version = "1", features = ["attributes", "tokio1"] }