about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2025-01-04 17:23:17 -0800
committerGitHub <noreply@github.com>2025-01-04 17:23:17 -0800
commitbfd7ac17f95952d445ff64e91fc36813c2ea33f9 (patch)
treebae9898be7264d864501aee7200637bd17783b57
parent5be6c9bc12d68d9f8e29b881cfffb6ba9442c519 (diff)
parente30369fcb4ecef988f90ccbb1e9162c29f3b4542 (diff)
downloadrust-bfd7ac17f95952d445ff64e91fc36813c2ea33f9.tar.gz
rust-bfd7ac17f95952d445ff64e91fc36813c2ea33f9.zip
Rollup merge of #135110 - matthiaskrgr:adler, r=workingjubilee
library: fix adler{ -> 2}.debug

Fixes
```
Checking stage0 library artifacts {alloc, core, panic_abort, panic_unwind, proc_macro, std, sysroot, test, unwind} (x86_64-unknown-linux-gnu)
warning: profile package spec `adler` in profile `release` did not match any packages

	Did you mean `adler2`?
```
r? `@bjorn3`
-rw-r--r--library/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/Cargo.toml b/library/Cargo.toml
index e744cfe5e0f..e59aa518804 100644
--- a/library/Cargo.toml
+++ b/library/Cargo.toml
@@ -32,7 +32,7 @@ codegen-units = 10000
 [profile.release.package]
 addr2line.debug = 0
 addr2line.opt-level = "s"
-adler.debug = 0
+adler2.debug = 0
 gimli.debug = 0
 gimli.opt-level = "s"
 miniz_oxide.debug = 0