diff --git a/crates/iceberg/src/spec/manifest.rs b/crates/iceberg/src/spec/manifest.rs index 563837aea..d412a2070 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 a5a7402a5..0763a9d50 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"]