Skip to content

Commit af034f6

Browse files
committed
chore: update package metadata across multiple Cargo.toml files
1 parent c0480d2 commit af034f6

14 files changed

Lines changed: 51 additions & 500 deletions

File tree

ballista-cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ballista-cli"
20-
description = "Command Line Client for Ballista distributed query engine."
21-
version = "52.0.0"
2219
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
20+
description = "Command Line Client for Ballista distributed query engine."
2321
edition = { workspace = true }
24-
rust-version = { workspace = true }
22+
homepage = "https://datafusion.apache.org/ballista/"
2523
keywords = ["ballista", "cli"]
2624
license = "Apache-2.0"
27-
homepage = "https://datafusion.apache.org/ballista/"
28-
repository = "https://github.com/apache/datafusion-ballista"
25+
name = "ballista-cli"
2926
readme = "README.md"
27+
repository = "https://github.com/apache/datafusion-ballista"
28+
rust-version = { workspace = true }
29+
version = "52.0.0"
3030

3131
[dependencies]
3232
ballista = { path = "../ballista/client", version = "52.0.0", features = ["standalone"] }

ballista/client/Cargo.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ballista"
19+
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
2020
description = "Ballista Distributed Compute"
21-
license = "Apache-2.0"
22-
version = "52.0.0"
21+
edition = { workspace = true }
2322
homepage = "https://datafusion.apache.org/ballista/"
24-
repository = "https://github.com/apache/datafusion-ballista"
23+
license = "Apache-2.0"
24+
name = "ballista"
2525
readme = "README.md"
26-
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
27-
edition = { workspace = true }
26+
repository = "https://github.com/apache/datafusion-ballista"
2827
rust-version = { workspace = true }
28+
version = "52.0.0"
2929

3030
[dependencies]
3131
async-trait = { workspace = true }
@@ -53,6 +53,4 @@ tonic = { workspace = true }
5353
[features]
5454
default = ["standalone"]
5555
standalone = ["ballista-executor", "ballista-scheduler"]
56-
# tests which need change of RUST_MIN_STACK in order for
57-
# tests to run.
5856
test_extended_stack = []

ballista/client/Cargo.toml.new

Lines changed: 0 additions & 56 deletions
This file was deleted.

ballista/core/Cargo.toml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,31 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ballista-core"
20-
description = "Ballista Distributed Compute"
21-
license = "Apache-2.0"
22-
version = "52.0.0"
23-
homepage = "https://datafusion.apache.org/ballista/"
24-
repository = "https://github.com/apache/datafusion-ballista"
25-
readme = "README.md"
2619
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
27-
edition = { workspace = true }
28-
rust-version = { workspace = true }
2920
build = "build.rs"
21+
description = "Ballista Distributed Compute"
22+
edition = { workspace = true }
3023

3124
# Exclude proto files so crates.io consumers don't need protoc
3225
exclude = ["*.proto"]
26+
homepage = "https://datafusion.apache.org/ballista/"
27+
license = "Apache-2.0"
28+
name = "ballista-core"
29+
readme = "README.md"
30+
repository = "https://github.com/apache/datafusion-ballista"
31+
rust-version = { workspace = true }
32+
version = "52.0.0"
3333

3434
[package.metadata.docs.rs]
3535
rustc-args = ["--cfg", "docsrs"]
3636

3737
[features]
38+
default = ["arrow-ipc-optimizations"]
3839
arrow-ipc-optimizations = []
3940
build-binary = ["aws-config", "aws-credential-types", "clap"]
40-
default = ["arrow-ipc-optimizations"]
4141
docsrs = []
42-
# Used for testing ONLY: causes all values to hash to the same value (test for collisions)
4342
force_hash_collisions = ["datafusion/force_hash_collisions"]
4443
spark-compat = ["dep:datafusion-spark"]
45-
# Enable Vortex columnar format support for shuffles
4644
vortex = ["vortex-array", "vortex-buffer", "vortex-error", "vortex-ipc"]
4745

4846
[dependencies]

ballista/core/Cargo.toml.new

Lines changed: 0 additions & 88 deletions
This file was deleted.

ballista/executor/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ballista-executor"
19+
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
2020
description = "Ballista Distributed Compute - Executor"
21-
license = "Apache-2.0"
22-
version = "52.0.0"
21+
edition = { workspace = true }
2322
homepage = "https://datafusion.apache.org/ballista/"
24-
repository = "https://github.com/apache/datafusion-ballista"
23+
license = "Apache-2.0"
24+
name = "ballista-executor"
2525
readme = "README.md"
26-
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
27-
edition = { workspace = true }
26+
repository = "https://github.com/apache/datafusion-ballista"
2827
rust-version = { workspace = true }
28+
version = "52.0.0"
2929

3030
[[bin]]
3131
name = "ballista-executor"
3232
path = "src/bin/main.rs"
3333
required-features = ["build-binary"]
3434

3535
[features]
36+
default = ["arrow-ipc-optimizations", "build-binary", "mimalloc"]
3637
arrow-ipc-optimizations = []
3738
build-binary = ["clap", "tracing-subscriber", "tracing-appender", "tracing", "ballista-core/build-binary"]
38-
default = ["arrow-ipc-optimizations", "build-binary", "mimalloc"]
3939
spark-compat = ["ballista-core/spark-compat"]
4040
vortex = ["ballista-core/vortex", "vortex-array", "vortex-ipc"]
4141

ballista/executor/Cargo.toml.new

Lines changed: 0 additions & 80 deletions
This file was deleted.

ballista/scheduler/Cargo.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,25 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ballista-scheduler"
19+
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
2020
description = "Ballista Distributed Compute - Scheduler"
21-
license = "Apache-2.0"
22-
version = "52.0.0"
21+
edition = { workspace = true }
2322
homepage = "https://datafusion.apache.org/ballista/"
24-
repository = "https://github.com/apache/datafusion-ballista"
23+
license = "Apache-2.0"
24+
name = "ballista-scheduler"
2525
readme = "README.md"
26-
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
27-
edition = { workspace = true }
26+
repository = "https://github.com/apache/datafusion-ballista"
2827
rust-version = { workspace = true }
28+
version = "52.0.0"
2929

3030
[[bin]]
3131
name = "ballista-scheduler"
3232
path = "src/bin/main.rs"
3333
required-features = ["build-binary"]
3434

3535
[features]
36-
build-binary = ["clap", "tracing-subscriber", "tracing-appender", "tracing"]
3736
default = ["build-binary", "substrait"]
38-
# job info can cache stage plans, in some cases where
39-
# task plans can be re-computed, cache behavior may need to be disabled.
37+
build-binary = ["clap", "tracing-subscriber", "tracing-appender", "tracing"]
4038
disable-stage-plan-cache = []
4139
graphviz-support = ["dep:graphviz-rust"]
4240
keda-scaler = []

0 commit comments

Comments
 (0)