-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 874 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
[package]
name = "lambda-delta-lifecycler"
description = "Simple AWS Lambda for expiring older objects in Delta tables"
version = "0.1.0"
authors = ["R Tyler Croy <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later"
[dependencies]
anyhow = "*"
aws_lambda_events = { version = "0.7" }
chrono = "*"
deltalake = { version = "0.11.0", features = ["arrow", "parquet", "s3"]}
lambda_runtime = { version = "0.7" }
log = "0.4"
pretty_env_logger = "0.4"
rusoto_core = { version = "*", default-features = false, features = ["rustls"] }
rusoto_credential = "*"
rusoto_s3 = { version = "*", default-features = false, features = ["rustls"]}
serde = { version = "*", features = ["rc"]}
serde_json = "1"
tokio = { version = "1", features = ["macros"] }
urlencoding = "2"
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
incremental = false
opt-level = "z"