Skip to content
Closed
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
8 changes: 4 additions & 4 deletions dev/release/00-prepare-test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ def test_version_pre_tag
path: "rust/parquet_derive_test/Cargo.toml",
hunks: [
["-version = \"#{@snapshot_version}\"",
"+version = \"#{@release_version}\"",
"-parquet = { path = \"../parquet\", version = \"#{@snapshot_version}\" }",
"+version = \"#{@release_version}\""],
["-parquet = { path = \"../parquet\", version = \"#{@snapshot_version}\" }",
"-parquet_derive = { path = \"../parquet_derive\", version = \"#{@snapshot_version}\" }",
"+parquet = { path = \"../parquet\", version = \"#{@release_version}\" }",
"+parquet_derive = { path = \"../parquet_derive\", version = \"#{@release_version}\" }"],
Expand Down Expand Up @@ -610,8 +610,8 @@ def test_version_post_tag
path: "rust/parquet_derive_test/Cargo.toml",
hunks: [
["-version = \"#{@release_version}\"",
"+version = \"#{@next_snapshot_version}\"",
"-parquet = { path = \"../parquet\", version = \"#{@release_version}\" }",
"+version = \"#{@next_snapshot_version}\""],
["-parquet = { path = \"../parquet\", version = \"#{@release_version}\" }",
"-parquet_derive = { path = \"../parquet_derive\", version = \"#{@release_version}\" }",
"+parquet = { path = \"../parquet\", version = \"#{@next_snapshot_version}\" }",
"+parquet_derive = { path = \"../parquet_derive\", version = \"#{@next_snapshot_version}\" }"],
Expand Down
1 change: 1 addition & 0 deletions rust/benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ authors = ["Apache Arrow <[email protected]>"]
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
license = "Apache-2.0"
publish = false

[dependencies]
arrow = { path = "../arrow" }
Expand Down
1 change: 1 addition & 0 deletions rust/integration-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ repository = "https://github.com/apache/arrow"
authors = ["Apache Arrow <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
publish = false

[features]
logging = ["tracing-subscriber"]
Expand Down
5 changes: 5 additions & 0 deletions rust/parquet_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@
[package]
name = "parquet_derive"
version = "3.0.0-SNAPSHOT"
license = "Apache-2.0"
description = "Derive macros for the Rust implementation of Apache Parquet"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
authors = ["Apache Arrow <[email protected]>"]
keywords = [ "parquet" ]
readme = "README.md"
edition = "2018"

[lib]
Expand Down
5 changes: 5 additions & 0 deletions rust/parquet_derive_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@
[package]
name = "parquet_derive_test"
version = "3.0.0-SNAPSHOT"
license = "Apache-2.0"
description = "Integration test package for parquet-derive"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
authors = ["Apache Arrow <[email protected]>"]
keywords = [ "parquet" ]
edition = "2018"
publish = false

[dependencies]
parquet = { path = "../parquet", version = "3.0.0-SNAPSHOT" }
Expand Down