-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.18 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
[package]
name = "lakehouse-loader"
version = "0.1.0"
edition = "2021"
[dependencies]
arrow = { version = "52" }
arrow-buffer = { version = "52" }
arrow-schema = { version = "52" }
async-trait = "0.1"
bytes = "1.4.0"
clap = { version = "4.5", features = [ "derive" ] }
config = "0.13.3"
deltalake = { version = "0.21" }
env_logger = "0.11.1"
fastrand = "2.2.0"
futures = "0.3"
iceberg = "0.3.0"
log = "0.4"
native-tls = "0.2.11"
object_store = { version = "0.10", features = ["aws"] }
parquet = { version = "52" }
postgres = { version = "0.19.7", git = "https://github.com/splitgraph/rust-postgres", rev = "88c2c7714a4558aed6a63e2e2b140a8359568858" }
postgres-native-tls = { version = "0.5.0", git = "https://github.com/splitgraph/rust-postgres", rev = "88c2c7714a4558aed6a63e2e2b140a8359568858" }
serde_json = "1"
tempfile = "3"
thiserror = "1"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "signal", "process"] }
tokio-postgres = { version = "0.7.10", git = "https://github.com/splitgraph/rust-postgres", rev = "88c2c7714a4558aed6a63e2e2b140a8359568858" }
url = "2.5.0"
uuid = "1.2.1"
[dev-dependencies]
regex = "1.11"
[profile.release]
codegen-units = 1
lto = true
strip = true