From 649c63b67ede1d7c2f055cd7dd3fa82a0f878d1d Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 20 Aug 2024 14:34:45 +0000 Subject: [PATCH] fix: enable feature flags to which deltalake-core build tokio with enable_io() `cargo build` just in core was broken previously. When building at the root of the project this did not fail because some combination of feature flags for tokio were being used during that `cargo` run --- crates/core/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 3dc11ad244..6accc95da2 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -66,8 +66,10 @@ futures = { workspace = true } num_cpus = { workspace = true } tokio = { workspace = true, features = [ "macros", + "process", "rt", "rt-multi-thread", + "signal", "sync", "fs", "parking_lot",