This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-spatialbench.git
The following commit(s) were added to refs/heads/main by this push:
new bbe43e1 Bump rust version to 1.90.0 (#55)
bbe43e1 is described below
commit bbe43e18c9dc5ec75669c2738aed5045637410d3
Author: Pranav Toggi <[email protected]>
AuthorDate: Fri Oct 17 21:56:00 2025 -0700
Bump rust version to 1.90.0 (#55)
* bump rust version
* clippy fix
---
rust-toolchain.toml | 2 +-
spatialbench-cli/src/main.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index a85e6fa..7697bc1 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -19,5 +19,5 @@
# to compile this workspace and run CI jobs.
[toolchain]
-channel = "1.86.0"
+channel = "1.90.0"
components = ["rustfmt", "clippy"]
diff --git a/spatialbench-cli/src/main.rs b/spatialbench-cli/src/main.rs
index 8050974..79eee80 100644
--- a/spatialbench-cli/src/main.rs
+++ b/spatialbench-cli/src/main.rs
@@ -420,7 +420,7 @@ impl Cli {
};
zone_df::generate_zone_parquet(args)
.await
- .map_err(|e| io::Error::new(io::ErrorKind::Other, e))
+ .map_err(io::Error::other)
}
_ => Err(io::Error::new(
io::ErrorKind::InvalidInput,