diff options
| author | Jubilee <workingjubilee@gmail.com> | 2025-01-04 17:23:17 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-04 17:23:17 -0800 |
| commit | bfd7ac17f95952d445ff64e91fc36813c2ea33f9 (patch) | |
| tree | bae9898be7264d864501aee7200637bd17783b57 | |
| parent | 5be6c9bc12d68d9f8e29b881cfffb6ba9442c519 (diff) | |
| parent | e30369fcb4ecef988f90ccbb1e9162c29f3b4542 (diff) | |
| download | rust-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.toml | 2 |
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 |
