-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (30 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
40 lines (30 loc) · 878 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
29
30
31
32
33
34
35
36
37
38
39
40
[workspace]
resolver = "3"
members = [
"lambdas/http",
"lambdas/presigned-cleanup",
"lambdas/upload-completion",
]
[workspace.dependencies]
dotenvy = "=0.15.7"
# Docbox HTTP layer
docbox-http = "0.7.1"
# Docbox Core
docbox-core = "0.11.0"
# Bytes type used for cheap shared bytes (and utilities)
bytes = "=1.11.0"
bytes-utils = "=0.1.4"
# Logging
tracing = "=0.1.44"
# Error handling
thiserror = "=2.0.18"
# Date & time
chrono = { version = "=0.4.43", features = ["serde"] }
# AWS configuration
aws-config = { version = "=1.8.12", features = ["behavior-version-latest"] }
# Serialization and JSON
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
# [patch.crates-io]
# docbox-http = { version = "0.7.0", path = "../docbox/packages/docbox-http" }
# docbox-core = { version = "0.10.0", path = "../docbox/packages/docbox-core" }