-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 906 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
[package]
name = "AdventOfCodeWorkdayLeaderboard"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "backend"
path = "packages/backend/main.rs"
[[bin]]
name = "cache"
path = "packages/cache/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
lambda_http = { version = "0.8.3", default-features = false, features = [
"apigw_http",
] }
lambda_runtime = "0.8.3"
tokio = { version = "1", features = ["macros"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
] }
reqwest = { version = "0.11.22", features = ["native-tls-vendored"] }
chrono = "0.4.31"
aws-config = { version= "1.0.1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.2.0"
aws_lambda_events = "0.12.1"