This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 38d1977 chore: Upgrade toolchain to 1.75.0 (#140)
38d1977 is described below
commit 38d197715604db9405a9791c70c52637b72c5700
Author: Renjie Liu <[email protected]>
AuthorDate: Fri Dec 29 22:58:13 2023 +0800
chore: Upgrade toolchain to 1.75.0 (#140)
---
crates/iceberg/src/spec/manifest.rs | 2 +-
rust-toolchain.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/iceberg/src/spec/manifest.rs
b/crates/iceberg/src/spec/manifest.rs
index 563837a..d412a20 100644
--- a/crates/iceberg/src/spec/manifest.rs
+++ b/crates/iceberg/src/spec/manifest.rs
@@ -167,7 +167,7 @@ impl ManifestWriter {
let entry = self
.field_summary
.remove(&field.source_id)
- .unwrap_or(FieldSummary::default());
+ .unwrap_or_default();
partition_summary.push(entry);
}
partition_summary
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index a5a7402..0763a9d 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -16,5 +16,5 @@
# under the License.
[toolchain]
-channel = "1.72.1"
+channel = "1.75.0"
components = ["rustfmt", "clippy"]