-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 818 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
[package]
name = "duck_transcriber"
version = "0.1.0"
edition = "2021"
[dependencies]
lambda_http = "0.14"
lambda_runtime = "0.13"
reqwest = { version = "0.12.12", features = [
"multipart",
"json",
"rustls-tls",
], default-features = false }
serde = "1.0.215"
serde_json = "1.0.135"
tokio = { version = "1.43", features = ["full"] }
teloxide = { version = "0.13", features = ["macros", "rustls"], default-features = false }
mime = "0.3.17"
aws-config = { version = "1.5.15", features = ["behavior-version-latest"] }
aws-sdk-dynamodb = "1.62"
strum = { version = "0.26", features = ["derive"] }
log = "0.4.25"
fern = "0.7.1"
[package.metadata.lambda.deploy]
memory = 128 # Function's memory
timeout = 60 # Function's execution timeout
env_file = ".env" # File to load environment variables from