<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/compiler/rustc_middle/src/ty/codec.rs, branch 1.88.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.88.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.88.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-04-28T07:50:18+00:00</updated>
<entry>
<title>Add or-patterns to pattern types</title>
<updated>2025-04-28T07:50:18+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>github333195615777966@oli-obk.de</email>
</author>
<published>2025-02-27T09:46:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b023856f29743a288727d13d0d1044b8e0d3f9f3'/>
<id>urn:sha1:b023856f29743a288727d13d0d1044b8e0d3f9f3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>borrowck typeck children together with their parent</title>
<updated>2025-04-07T22:34:40+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2025-03-14T15:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f05a23be5c521b865d459154fd7a6cd0f08869ae'/>
<id>urn:sha1:f05a23be5c521b865d459154fd7a6cd0f08869ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move codec module back into middle</title>
<updated>2025-03-15T06:42:48+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2025-03-13T17:53:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=19c84c8812adb7fa0e7540b5de2541a5995e901a'/>
<id>urn:sha1:19c84c8812adb7fa0e7540b5de2541a5995e901a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use mk_ty_from_kind a bit less, clean up lifetime handling in borrowck</title>
<updated>2025-02-28T01:27:08+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2025-02-28T01:27:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=371c073ecff1d9e9ad6adb46e25bdbc53834be61'/>
<id>urn:sha1:371c073ecff1d9e9ad6adb46e25bdbc53834be61</id>
<content type='text'>
</content>
</entry>
<entry>
<title>intern valtrees</title>
<updated>2025-02-12T23:38:17+00:00</updated>
<author>
<name>Lukas Markeffsky</name>
<email>@</email>
</author>
<published>2025-02-07T18:33:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=885e0f1b96112aae9fbdd97d08b69ddc8eb01b1e'/>
<id>urn:sha1:885e0f1b96112aae9fbdd97d08b69ddc8eb01b1e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplify intra-crate qualifiers.</title>
<updated>2025-02-11T03:59:13+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2025-02-11T02:58:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=af6020320d32fb3491b8d30b580f675a2e1d16a6'/>
<id>urn:sha1:af6020320d32fb3491b8d30b580f675a2e1d16a6</id>
<content type='text'>
The following is a weird pattern for a file within `rustc_middle`:
```
use rustc_middle::aaa;
use crate::bbb;
```
More sensible and standard would be this:
```
use crate::{aaa, bbb};
```
I.e. we generally prefer using `crate::` to using a crate's own name.
(Exceptions are things like in macros where `crate::` doesn't work
because the macro is used in multiple crates.)

This commit fixes a bunch of these weird qualifiers.
</content>
</entry>
<entry>
<title>Re-export more `rustc_span::symbol` things from `rustc_span`.</title>
<updated>2024-12-18T02:38:53+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2024-12-12T23:29:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2620eb42d72d24baa1ca1056a769862b92c85f7f'/>
<id>urn:sha1:2620eb42d72d24baa1ca1056a769862b92c85f7f</id>
<content type='text'>
`rustc_span::symbol` defines some things that are re-exported from
`rustc_span`, such as `Symbol` and `sym`. But it doesn't re-export some
closely related things such as `Ident` and `kw`. So you can do `use
rustc_span::{Symbol, sym}` but you have to do `use
rustc_span::symbol::{Ident, kw}`, which is inconsistent for no good
reason.

This commit re-exports `Ident`, `kw`, and `MacroRulesNormalizedIdent`,
and changes many `rustc_span::symbol::` qualifiers in `compiler/` to
`rustc_span::`. This is a 200+ net line of code reduction, mostly
because many files with two `use rustc_span` items can be reduced to
one.
</content>
</entry>
<entry>
<title>no more Reveal :(</title>
<updated>2024-11-23T12:52:54+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2024-11-20T10:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=319843d8cd84ee1ec753f836ce3773d44fe0764b'/>
<id>urn:sha1:319843d8cd84ee1ec753f836ce3773d44fe0764b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Querify MonoItem collection</title>
<updated>2024-11-12T19:48:10+00:00</updated>
<author>
<name>Ben Kimock</name>
<email>kimockb@gmail.com</email>
</author>
<published>2024-10-31T03:10:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f6e913b259d331125cb8a22febbbe1df4294a7bc'/>
<id>urn:sha1:f6e913b259d331125cb8a22febbbe1df4294a7bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>compiler: Directly use rustc_abi in metadata and middle</title>
<updated>2024-11-03T21:38:47+00:00</updated>
<author>
<name>Jubilee Young</name>
<email>workingjubilee@gmail.com</email>
</author>
<published>2024-11-03T02:33:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=236fe33345072e6363560fd2b535a10947af86f7'/>
<id>urn:sha1:236fe33345072e6363560fd2b535a10947af86f7</id>
<content type='text'>
Stop reexporting ReprOptions from middle::ty
</content>
</entry>
</feed>
