Skip to content

Commit 0ebecd5

Browse files
authored
build: explicitly set publish = false for internal crates (apache#21869)
## Which issue does this PR close? N/A ## Rationale for this change this is done so we can query cargo metadata alone to find only user facing crates and to use cargo metadata to find user facing crates when searching for breaking changes in pr as suggested here: - apache#21499 (comment) ## What changes are included in this PR? set `publish = false` for: 1. `datafusion-benchmarks` 2. `datafusion-wasmtest` 3. `test-utils` ## Are these changes tested? I verified that these are not already published to crates.io and not in `dev/release/README.md` _Publish on Crates.io_ list ## Are there any user-facing changes? No
1 parent 1897c28 commit 0ebecd5

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

benchmarks/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ homepage = { workspace = true }
2525
repository = { workspace = true }
2626
license = { workspace = true }
2727
rust-version = { workspace = true }
28+
publish = false
2829

2930
# Note: add additional linter rules in lib.rs.
3031
# Rust does not support workspace + new linter rules in subcrates yet

datafusion/wasmtest/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ repository = { workspace = true }
2626
license = { workspace = true }
2727
authors = { workspace = true }
2828
rust-version = { workspace = true }
29+
publish = false
2930

3031
[package.metadata.docs.rs]
3132
all-features = true

test-utils/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
name = "test-utils"
2020
version = "0.1.0"
2121
edition = { workspace = true }
22+
publish = false
2223

2324
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2425

0 commit comments

Comments
 (0)