We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd101c commit 843739cCopy full SHA for 843739c
.github/workflows/release.yml
@@ -54,7 +54,7 @@ jobs:
54
uses: PyO3/maturin-action@v1
55
with:
56
target: aarch64
57
- args: --profile release-lto --out dist
+ args: --profile release-lto-thin --out dist
58
- name: Upload wheels
59
uses: actions/upload-artifact@v4
60
Cargo.toml
@@ -55,6 +55,11 @@ inherits = "release"
lto = true
codegen-units = 1
+[profile.release-lto-thin]
+inherits = "release"
+lto = "thin"
61
+codegen-units = 1
62
+
63
64
[features]
65
default = []
0 commit comments