about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-01-05 01:40:09 +0100
committerMatthias Krüger <matthias.krueger@famsik.de>2025-01-05 01:40:09 +0100
commite30369fcb4ecef988f90ccbb1e9162c29f3b4542 (patch)
treef087dd12b5bd2af45eef65926ec426998d542bf4
parent1891c28669863bf7ed3ef8f43f2d3fa546f34861 (diff)
downloadrust-e30369fcb4ecef988f90ccbb1e9162c29f3b4542.tar.gz
rust-e30369fcb4ecef988f90ccbb1e9162c29f3b4542.zip
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`?
```
-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