We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ef61a commit 674a697Copy full SHA for 674a697
.github/workflows/m1_tests.yml
@@ -15,6 +15,7 @@ env:
15
CARGO_TERM_COLOR: always
16
RUSTFLAGS: "-C target-cpu=native"
17
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
18
+ CARGO_PROFILE: release_thin_lto
19
20
concurrency:
21
group: ${{ github.workflow }}-${{ github.head_ref }}
Cargo.toml
@@ -8,6 +8,10 @@ lto = "fat"
8
[profile.release]
9
lto = "fat"
10
11
+[profile.release_thin_lto]
12
+inherits = "release"
13
+lto = "thin"
14
+
# Compiles much faster for tests and allows reasonable performance for iterating
[profile.devo]
inherits = "dev"
0 commit comments