Skip to content

Commit

Permalink
add build-bin to default features
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm committed Dec 10, 2024
1 parent 9df888c commit 946981e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ required-features = ["build-binary"]

[features]
build-binary = ["configure_me", "tracing-subscriber", "tracing-appender", "tracing"]
default = ["mimalloc"]
default = ["build-binary","mimalloc"]

[dependencies]
arrow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ballista/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ required-features = ["build-binary"]

[features]
build-binary = ["configure_me", "tracing-subscriber", "tracing-appender", "tracing"]
default = []
default = ["build-binary"]
flight-sql = []
keda-scaler = []
prometheus-metrics = ["prometheus", "once_cell"]
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ required-features = ["ballista/standalone"]
[dependencies]
ballista = { path = "../ballista/client", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0" }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
datafusion = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/examples/custom-scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use std::sync::Arc;
///
/// # Custom Ballista Scheduler
///
/// This example demonstrates how to crate custom made ballista schedulers.
/// This example demonstrates how to crate custom ballista schedulers.
///
#[tokio::main]
async fn main() -> ballista_core::error::Result<()> {
Expand Down
6 changes: 3 additions & 3 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ publish = false
async-trait = "0.1.77"
ballista = { path = "../ballista/client", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0" }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0", features = ["mimalloc"], default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
datafusion = { version = "42", features = ["pyarrow", "avro"] }
datafusion-proto = { version = "42" }
datafusion-python = { version = "42" }

pyo3 = { version = "0.22", features = ["extension-module", "abi3", "abi3-py38"] }
pyo3-log = "0.11.0"
tokio = { version = "1.35", features = ["macros", "rt", "rt-multi-thread", "sync"] }
tokio = { version = "1.42", features = ["macros", "rt", "rt-multi-thread", "sync"] }

[lib]
crate-type = ["cdylib"]
Expand Down

0 comments on commit 946981e

Please sign in to comment.