Skip to content

Commit bfd7ac1

Browse files
Rollup merge of rust-lang#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`
2 parents 5be6c9b + e30369f commit bfd7ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: library/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ codegen-units = 10000
3232
[profile.release.package]
3333
addr2line.debug = 0
3434
addr2line.opt-level = "s"
35-
adler.debug = 0
35+
adler2.debug = 0
3636
gimli.debug = 0
3737
gimli.opt-level = "s"
3838
miniz_oxide.debug = 0

0 commit comments

Comments
 (0)