This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch branch-0.1.0
in repository https://gitbox.apache.org/repos/asf/sedona-spatialbench.git

commit 73cc56a1ab8df0efea39572cb8baaf168bfe945a
Author: Jia Yu <[email protected]>
AuthorDate: Mon Dec 1 23:30:53 2025 -0800

    Fix missing and inconsistent information in Carto.toml files
---
 Cargo.toml                    | 3 ++-
 spatialbench-arrow/Cargo.toml | 9 ++++++---
 spatialbench-cli/Cargo.toml   | 8 +++++---
 spatialbench/Cargo.toml       | 2 ++
 4 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index d95e73a..82f5efa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,12 +6,13 @@ resolver = "2"
 
 [workspace.package]
 authors = ["Apache Sedona <[email protected]>"]
+description = "A benchmark for assessing geospatial SQL analytics query 
performance across database systems"
 edition = "2021"
 homepage = "https://github.com/apache/sedona-spatialbench/";
 license = "Apache-2.0"
 readme = "README.md"
 repository = "https://github.com/apache/sedona-spatialbench/";
-version = "1.1.1"
+version = "0.1.0"
 
 [workspace.dependencies]
 geo = "0.31.0"
diff --git a/spatialbench-arrow/Cargo.toml b/spatialbench-arrow/Cargo.toml
index c78bd82..a11b7ff 100644
--- a/spatialbench-arrow/Cargo.toml
+++ b/spatialbench-arrow/Cargo.toml
@@ -17,17 +17,20 @@
 
 [package]
 name = "spatialbench-arrow"
-version = "1.1.1"
-edition = "2024"
+version = "0.1.0"
+edition = "2021"
 authors = ["Apache Sedona <[email protected]>"]
 description = "SpatialBench data generator into Apache Arrow format"
+homepage = "https://github.com/apache/sedona-spatialbench";
 repository = "https://github.com/apache/sedona-spatialbench";
 readme = "README.md"
 license = "Apache-2.0"
+keywords = ["spatial", "geospatial", "data-generation", "apache-arrow"]
+categories = ["science::geo", "database", "data-structures"]
 
 [dependencies]
 arrow = { version = "56", default-features = false, features = ["prettyprint"] 
}
-spatialbench = { path = "../spatialbench", version = "1.1.1" }
+spatialbench = { path = "../spatialbench", version = "0.1.0" }
 geo = { workspace = true }
 geozero = { workspace = true }
 
diff --git a/spatialbench-cli/Cargo.toml b/spatialbench-cli/Cargo.toml
index 5b42ec4..8c1ff93 100644
--- a/spatialbench-cli/Cargo.toml
+++ b/spatialbench-cli/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "spatialbench-cli"
-version = "1.1.1"
+version = "0.1.0"
 authors = { workspace = true }
 description = "Blazing fast pure Rust SpatialBench data generator command line 
tool."
 readme = "README.md"
@@ -25,13 +25,15 @@ edition = { workspace = true }
 homepage = { workspace = true }
 license = { workspace = true }
 repository = { workspace = true }
+keywords = ["spatial", "geospatial", "benchmark", "cli", "data-generation"]
+categories = ["science::geo", "database", "command-line-utilities", 
"development-tools"]
 
 [dependencies]
 arrow = "56"
 parquet = "56"
 clap = { version = "4.5.32", features = ["derive"] }
-spatialbench = { path = "../spatialbench", version = "1.1.1"}
-spatialbench-arrow = { path = "../spatialbench-arrow", version = "1.1.1" }
+spatialbench = { path = "../spatialbench", version = "0.1.0"}
+spatialbench-arrow = { path = "../spatialbench-arrow", version = "0.1.0" }
 tokio = { version = "1.44.1", features = ["full"]}
 futures = "0.3.31"
 num_cpus = "1.0"
diff --git a/spatialbench/Cargo.toml b/spatialbench/Cargo.toml
index 7ab2005..304f7ea 100644
--- a/spatialbench/Cargo.toml
+++ b/spatialbench/Cargo.toml
@@ -25,6 +25,8 @@ version = { workspace = true }
 edition = { workspace = true }
 homepage = { workspace = true }
 license = { workspace = true }
+keywords = ["spatial", "geospatial", "benchmark", "data-generation", "sql"]
+categories = ["science::geo", "database", "data-structures", 
"development-tools"]
 
 # Designed to have no depdencies to make it easy to embed in other projects
 # See ../ARCHITECTURE.md for more details

Reply via email to