-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.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.83"
[workspace.dependencies]
anyhow = "1.0.94"
askama = "0.12.1"
async-trait = "0.1.83"
axum = { version = "0.7.9", features = ["macros"] }
base64 = "0.22.1"
bytes = "1.9.0"
cached = { version = "0.54.0", features = ["async"] }
clap = { version = "4.5.23", features = ["derive"] }
chrono = "0.4.39"
email_address = "0.2.9"
figment = { version = "0.10.19", features = ["yaml", "env"] }
hmac = "0.12.1"
hex = "0.4.3"
http = "1.2.0"
indoc = "2.0.5"
lambda_http = "0.13.0"
mockall = "0.13.1"
octorust = "0.8.0-rc.1"
pem = "3.0.4"
pretty_assertions = "1.4.1"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "2.0.6"
tokio = { version = "1.42.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tower = "0.5.1"
tower-http = { version = "0.6.2", features = ["auth", "fs", "set-header", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }