-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (41 loc) · 1.02 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
[package]
name = "rust_doorbell"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.52"
aws-config = "0.5.1"
aws-sdk-apigatewaymanagement = "0.5.2"
aws-sdk-dynamodb = "0.5.0"
aws-sdk-eventbridge = "0.5.0"
aws-sdk-s3 = "0.5.0"
aws-types = "0.5.1"
chrono = "0.4.19"
futures = "0.3.17"
lambda_runtime = "0.4.1"
rand = "0.8.4"
serde = {version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
tokio = "1.13.0"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["fmt", "json"] }
uuid = { version = "0.8", features = ["v4"] }
[[bin]]
name = "on-connect"
path = "src/bin/on-connect.rs"
[[bin]]
name = "on-disconnect"
path = "src/bin/on-disconnect.rs"
[[bin]]
name = "s3-presigned-url"
path = "src/bin/s3-presigned-url.rs"
[[bin]]
name = "generate-code"
path = "src/bin/generate-code.rs"
[[bin]]
name = "send-code"
path = "src/bin/send-code.rs"
[[bin]]
name = "send-photo"
path = "src/bin/send-photo.rs"