This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
forked from buoyant-data/oxbow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (50 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
[package]
name = "oxbow"
version = "0.3.0"
edition = "2021"
keywords = ["deltalake", "parquet", "lambda", "delta"]
homepage = "https://github.com/buoyant-data/oxbow"
repository = "https://github.com/buoyant-data/oxbow"
description = "Tooling for converting directories of Apache Parquet files into Delta Lake tables"
license-file = "LICENSE.txt"
[[bin]]
name = "oxbow-cli"
path = "src/bin/cli.rs"
[[bin]]
name = "oxbow-lambda"
path = "src/bin/lambda.rs"
[dependencies]
anyhow = "*"
chrono = "*"
deltalake = { version = "0.15", features = ["s3", "json"]}
futures = "*"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "env-filter", "tracing-log"] }
tokio = { version = "1", features = ["macros"] }
url = { version = "2.3", features = ["serde"] }
# cli requirements
gumdrop = "=0.8"
# lambda requirements
aws_lambda_events = { version = "0.10.0", default-features = false, features = ["s3", "sqs"]}
dynamodb_lock = { version = "*" }
lambda_runtime = { version = "0.8" }
rusoto_core = { version = "0.47", default-features = false, features = ["rustls"]}
rusoto_credential = { version = "0.47"}
rusoto_dynamodb = { version = "0.47", default-features = false}
rusoto_s3 = { version = "0.47", default-features = false, features = ["rustls"] }
serde = { version = "=1", features = ["rc"] }
serde_json = "=1"
urlencoding = "=2"
[dev-dependencies]
fs_extra = "1"
tempfile = "*"
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
incremental = false
opt-level = "z"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"