From 41a2d926405b5cea856777c5b9b80ffc0b382910 Mon Sep 17 00:00:00 2001 From: Simon Lin Date: Mon, 20 Jan 2025 21:49:53 +1100 Subject: [PATCH] try fix pyodide CI --- crates/polars-error/Cargo.toml | 2 +- crates/polars-io/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/polars-error/Cargo.toml b/crates/polars-error/Cargo.toml index 16cbe7e5d94f..65dcee74be0d 100644 --- a/crates/polars-error/Cargo.toml +++ b/crates/polars-error/Cargo.toml @@ -11,7 +11,7 @@ description = "Error definitions for the Polars DataFrame library" [dependencies] arrow-format = { workspace = true, optional = true } avro-schema = { workspace = true, optional = true } -object_store = { workspace = true, optional = true } +object_store = { workspace = true, optional = true, default-features = false } regex = { workspace = true, optional = true } simdutf8 = { workspace = true } thiserror = { workspace = true } diff --git a/crates/polars-io/Cargo.toml b/crates/polars-io/Cargo.toml index c3c1f90a5608..e1076e39f915 100644 --- a/crates/polars-io/Cargo.toml +++ b/crates/polars-io/Cargo.toml @@ -34,7 +34,7 @@ itoa = { workspace = true, optional = true } memchr = { workspace = true } memmap = { workspace = true } num-traits = { workspace = true } -object_store = { workspace = true, optional = true } +object_store = { workspace = true, optional = true, default-features = false } once_cell = { workspace = true } percent-encoding = { workspace = true } pyo3 = { workspace = true, optional = true }