Skip to content

Commit

Permalink
fix: enable uc cloud features in python crate
Browse files Browse the repository at this point in the history
Signed-off-by: Omkar P <[email protected]>
  • Loading branch information
omkar-foss committed Feb 24, 2025
1 parent bc09ff3 commit 750f846
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,14 @@ tokio = { workspace = true, features = ["rt-multi-thread"] }

deltalake-mount = { path = "../crates/mount" }

# catalog-unity
deltalake-catalog-unity = { path = "../crates/catalog-unity", features = ["aws", "azure", "gcp", "r2"], optional = 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
# 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"] }

Expand All @@ -65,9 +68,10 @@ version = "0"
features = ["azure", "gcs", "python", "datafusion", "unity-experimental", "hdfs", "lakefs"]

[features]
default = ["rustls"]
default = ["rustls", "unity-experimental"]
native-tls = ["deltalake/s3-native-tls", "deltalake/glue"]
rustls = ["deltalake/s3", "deltalake/glue"]
unity-experimental = ["deltalake-catalog-unity"]

[profile.release]
opt-level = 3
Expand Down

0 comments on commit 750f846

Please sign in to comment.