Skip to content
Merged
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
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,10 @@ arrow-schema = { version = "57.1.0", path = "./arrow-schema" }
arrow-select = { version = "57.1.0", path = "./arrow-select" }
arrow-string = { version = "57.1.0", path = "./arrow-string" }
parquet = { version = "57.1.0", path = "./parquet", default-features = false }

# These crates have not yet been released and thus do not use the workspace version
parquet-geospatial = { version = "0.1.0", path = "./parquet-geospatial" }
parquet-variant = { version = "0.2.0", path = "./parquet-variant" }
parquet-variant-json = { version = "0.2.0", path = "./parquet-variant-json" }
parquet-variant-compute = { version = "0.2.0", path = "./parquet-variant-compute" }
parquet-geospatial = { version = "57.1.0", path = "./parquet-geospatial" }
parquet-variant = { version = "57.1.0", path = "./parquet-variant" }
parquet-variant-json = { version = "57.1.0", path = "./parquet-variant-json" }
parquet-variant-compute = { version = "57.1.0", path = "./parquet-variant-compute" }

chrono = { version = "0.4.40", default-features = false, features = ["clock"] }

Expand Down
4 changes: 1 addition & 3 deletions parquet-geospatial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@

[package]
name = "parquet-geospatial"
# This package is still in development and thus the version does
# not follow the versions of the rest of the crates in this repo.
version = "0.1.0"
version = { workspace = true }
license = { workspace = true }
description = "Apache Parquet Geometry and Geography implementation in Rust"
homepage = { workspace = true }
Expand Down
4 changes: 1 addition & 3 deletions parquet-variant-compute/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@

[package]
name = "parquet-variant-compute"
# This package is still in development and thus the version does
# not follow the versions of the rest of the crates in this repo.
version = "0.2.0"
version = { workspace = true }
license = { workspace = true }
description = "Apache Parquet Variant Batch Processing"
homepage = { workspace = true }
Expand Down
4 changes: 1 addition & 3 deletions parquet-variant-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@

[package]
name = "parquet-variant-json"
# This package is still in development and thus the version does
# not follow the versions of the rest of the crates in this repo.
version = "0.2.0"
version = { workspace = true }
license = { workspace = true }
description = "Apache Parquet Variant to/from JSON"
homepage = { workspace = true }
Expand Down
4 changes: 1 addition & 3 deletions parquet-variant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@

[package]
name = "parquet-variant"
# This package is still in development and thus the version does
# not follow the versions of the rest of the crates in this repo.
version = "0.2.0"
version = { workspace = true }
license = { workspace = true }
description = "Apache Parquet Variant implementation in Rust"
homepage = { workspace = true }
Expand Down
Loading