-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (35 loc) · 880 Bytes
/
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
[package]
name = "event-driven-architecture"
version = "0.1.0"
authors = ["Brandon Konkle <[email protected]>"]
edition = "2021"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
aws-config = "1.5"
aws_lambda_events = "0.15"
aws-sdk-dynamodb = "1.44"
aws-sdk-kinesis = "1.42"
aws-sdk-s3 = "1.48"
axum = { version = "0.7", features = ["macros"] }
axum-aws-lambda = "0.8"
backtrace = "0.3"
chrono = { version = "0.4", features = ["serde"] }
cqrs-es = "0.4"
crossterm = "0.28"
derive-new = "0.7"
dynamo-es = "0.4"
lambda_http = "0.13"
lambda_runtime = "0.13"
log = { version = "0.4", features = ["kv_unstable_std"] }
serde = "1.0"
serde_bytes = "0.11"
serde_dynamo = "4.2"
serde_json = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["trace"] }
ulid = "1.1"