Files
Rust timing bot 8cf224568d Unrolled build for #156419
Rollup merge of #156419 - jakubadamw:update-itertools-to-0.15, r=Mark-Simulacrum

Update itertools to 0.15

This bumps the itertools dependency to [0.15](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md#0150).

There’s a breaking change upstream in the shape of `itertools::Position`, so this updates the use sites of it as well, aside from submodules like clippy, which will be handled [separately](https://github.com/rust-lang/rust-clippy/pull/16805).
2026-06-29 00:32:54 +02:00
..
2026-06-24 23:18:10 +01:00

The codegen crate contains the code to convert from MIR into LLVM IR, and then from LLVM IR into machine code. In general it contains code that runs towards the end of the compilation process.

For more information about how codegen works, see the rustc dev guide.