This is an automated email from the ASF dual-hosted git repository. kevinjqliu pushed a commit to branch kevinjqliu/more-pyiceberg-core-optimizations in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
commit 3a1f5015cb613f23fa5ae9f52670f2fcdc534576 Author: Kevin Liu <[email protected]> AuthorDate: Tue Nov 11 19:30:41 2025 -0800 lto = "thin", opt-level = "z" --- bindings/python/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 9d4e94ab..1beabf37 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -41,5 +41,6 @@ tokio = { version = "1.46.1", default-features = false } [profile.release] codegen-units = 1 debug = false -lto = "fat" +lto = "thin" +opt-level = "z" strip = true
