-
Notifications
You must be signed in to change notification settings - Fork 621
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (80 loc) · 2.52 KB
/
Cargo.toml
File metadata and controls
97 lines (80 loc) · 2.52 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[package]
name = "deltalake-python"
version = "1.2.0"
authors = [
"Qingping Hou <[email protected]>",
"Will Jones <[email protected]>",
]
homepage = "https://github.com/delta-io/delta-rs"
license = "Apache-2.0"
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
readme = "README.md"
edition = "2021"
keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"]
[lib]
name = "deltalake"
crate-type = ["cdylib"]
doc = false
[dependencies]
delta_kernel.workspace = true
pyo3-arrow = { version = "0.11.0", default-features = false }
# arrow
arrow-schema = { workspace = true, features = ["serde"] }
# datafusion
datafusion-ffi = { workspace = true }
# serde
serde = { workspace = true }
serde_json = { workspace = true }
# "stdlib"
async-trait = { workspace = true }
chrono = { workspace = true }
env_logger = "0"
thiserror = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4"] }
parking_lot = "0.12"
# runtime
futures = { workspace = true }
num_cpus = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
deltalake-mount = { path = "../crates/mount" }
# opentelemetry
tracing-opentelemetry = { workspace = true }
opentelemetry = { workspace = true }
opentelemetry-otlp = { workspace = true }
opentelemetry_sdk = { workspace = true }
tracing-subscriber = { workspace = true }
# Non-unix or emscripten os
[target.'cfg(any(not(target_family = "unix"), target_os = "emscripten"))'.dependencies]
mimalloc = { version = "0.1", default-features = false }
# Unix (excluding macOS & emscripten) → jemalloc
[target.'cfg(all(target_family = "unix", not(target_os = "macos"), not(target_os = "emscripten")))'.dependencies]
jemallocator = { version = "0.5", features = [
"disable_initial_exec_tls",
"background_threads",
] }
# macOS → jemalloc (without background_threads) (https://github.com/jemalloc/jemalloc/issues/843)
[target.'cfg(all(target_family = "unix", target_os = "macos"))'.dependencies]
jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
[dependencies.pyo3]
version = "0.25.1"
features = ["extension-module", "abi3", "abi3-py39"]
[dependencies.deltalake]
path = "../crates/deltalake"
version = "0"
features = [
"azure",
"gcs",
"python",
"datafusion",
"unity-experimental",
"hdfs",
"lakefs",
]
[features]
default = ["rustls"]
native-tls = ["deltalake/s3-native-tls", "deltalake/glue"]
rustls = ["deltalake/s3", "deltalake/glue"]
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"