diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml index 6b6ff345d..2f1ddeb0f 100644 --- a/ballista-cli/Cargo.toml +++ b/ballista-cli/Cargo.toml @@ -35,7 +35,7 @@ datafusion = { workspace = true } datafusion-cli = { workspace = true } dirs = "5.0.1" env_logger = { workspace = true } -mimalloc = { workspace = true, default-features = false } +mimalloc = { workspace = true } rustyline = "14.0.0" tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } diff --git a/ballista/executor/Cargo.toml b/ballista/executor/Cargo.toml index 0f5a62d40..abe256ebe 100644 --- a/ballista/executor/Cargo.toml +++ b/ballista/executor/Cargo.toml @@ -48,7 +48,7 @@ datafusion = { workspace = true } datafusion-proto = { workspace = true } futures = { workspace = true } log = { workspace = true } -mimalloc = { workspace = true, default-features = false, optional = true } +mimalloc = { workspace = true, optional = true } parking_lot = { workspace = true } tempfile = { workspace = true } tokio = { workspace = true, features = [ diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index ac6b52586..4701e9c3c 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -38,7 +38,7 @@ datafusion = { workspace = true } datafusion-proto = { workspace = true } env_logger = { workspace = true } futures = { workspace = true } -mimalloc = { workspace = true, optional = true, default-features = false } +mimalloc = { workspace = true, optional = true } rand = { workspace = true } serde = { workspace = true } serde_json = "1.0.78"