Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 20 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,32 @@ rust-version = "1.88.0"
[workspace.dependencies]
arrow = { version = "57", features = ["ipc_compression"] }
arrow-flight = { version = "57", features = ["flight-sql-experimental"] }
async-trait = { version = "0.1" }
clap = { version = "4.5", features = ["derive", "cargo"] }
configure_me = { version = "0.4.0" }
configure_me_codegen = { version = "0.4.4" }
ctor = { version = "0.5" }
dashmap = { version = "6.1" }
datafusion = "51.0.0"
datafusion-cli = "51.0.0"
datafusion-proto = "51.0.0"
datafusion-proto-common = "51.0.0"
datafusion-substrait = "51.0.0"
env_logger = { version = "0.11" }
futures = { version = "0.3" }
log = { version = "0.4" }
mimalloc = { version = "0.1" }
object_store = "0.12"
parking_lot = { version = "0.12" }
prost = "0.14"
prost-types = "0.14"
rand = { version = "0.9" }
rstest = { version = "0.26" }
serde = { version = "1.0" }
tempfile = { version = "3.16" }

tokio = { version = "1" }
tokio-stream = { version = "0.1" }
tonic = { version = "0.14" }
tonic-build = { version = "0.14", default-features = false, features = [
"transport",
Expand All @@ -51,22 +67,8 @@ tonic-prost-build = { version = "0.14" }
tracing = "0.1"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ctor = { version = "0.5" }
mimalloc = { version = "0.1" }

tokio = { version = "1" }
uuid = { version = "1.13", features = ["v4", "v7"] }
rand = { version = "0.9" }
env_logger = { version = "0.11" }
futures = { version = "0.3" }
log = { version = "0.4" }
parking_lot = { version = "0.12" }
tempfile = { version = "3.16" }
dashmap = { version = "6.1" }
async-trait = { version = "0.1" }
serde = { version = "1.0" }
tokio-stream = { version = "0.1" }
url = { version = "2.5" }
uuid = { version = "1.13", features = ["v4", "v7"] }

# cargo build --profile release-lto
[profile.release-lto]
Expand All @@ -89,15 +91,15 @@ panic = 'unwind'
rpath = false

[profile.ci]
inherits = "dev"
incremental = false
debug = false
debug-assertions = false
incremental = false
inherits = "dev"
strip = "debuginfo"

# ci turns off debug info, etc. for dependencies to allow for smaller binaries making caching more effective
[profile.ci.package."*"]
debug = false
debug-assertions = false
incremental = false
strip = "debuginfo"
incremental = false
3 changes: 3 additions & 0 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@ tokio = { version = "^1.44", features = [

[dev-dependencies]
ballista-core = { path = "../ballista/core", version = "51.0.0" }
ballista-executor = { path = "../ballista/executor", version = "51.0.0" }
ballista-scheduler = { path = "../ballista/scheduler", version = "51.0.0" }
tracing-subscriber = { workspace = true }
Loading