-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (51 loc) · 1.21 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
[workspace]
resolver = "2"
members = [
"dco2",
"dco2-aws-lambda",
"dco2-server"
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.81"
[workspace.dependencies]
anyhow = "1.0.91"
askama = "0.12.1"
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
base64 = "0.22.1"
bytes = "1.8.0"
cached = { version = "0.53.1", features = ["async"] }
clap = { version = "4.5.20", features = ["derive"] }
chrono = "0.4.38"
email_address = "0.2.9"
figment = { version = "0.10.19", features = ["yaml", "env"] }
hmac = "0.12.1"
hex = "0.4.3"
http = "1.1.0"
indoc = "2.0.5"
lambda_http = "0.13.0"
mockall = "0.13.0"
octorust = "0.8.0-rc.1"
pem = "3.0.4"
pretty_assertions = "1.4.1"
regex = "1.11.1"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tower = "0.5.1"
tower-http = { version = "0.5.2", features = ["auth", "fs", "set-header", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }