Skip to content

Commit

Permalink
chore: fix warning mimaloc warning when building (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm authored Nov 26, 2024
1 parent 7947b07 commit 683dede
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ballista-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 683dede

Please sign in to comment.