<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/compiler/rustc_trait_selection/src/traits/select/mod.rs, branch 1.85.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.85.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.85.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2024-12-27T13:35:57+00:00</updated>
<entry>
<title>Fix typos</title>
<updated>2024-12-27T13:35:57+00:00</updated>
<author>
<name>chloefeal</name>
<email>188809157+chloefeal@users.noreply.github.com</email>
</author>
<published>2024-12-27T13:35:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e1b65be4177486979bab4a05f520e0c013b831b4'/>
<id>urn:sha1:e1b65be4177486979bab4a05f520e0c013b831b4</id>
<content type='text'>
Signed-off-by: chloefeal &lt;188809157+chloefeal@users.noreply.github.com&gt;
</content>
</entry>
<entry>
<title>Begin to implement type system layer of unsafe binders</title>
<updated>2024-12-22T21:57:57+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2024-12-21T17:05:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9a1c5eb5b385adb3cd04af0049cbf5c225cefdc3'/>
<id>urn:sha1:9a1c5eb5b385adb3cd04af0049cbf5c225cefdc3</id>
<content type='text'>
</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>consistently handle global where-bounds</title>
<updated>2024-12-17T07:50:47+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2024-10-29T15:10:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3350b9faadd8e9c3cf87a9c8de266ea252a67c5c'/>
<id>urn:sha1:3350b9faadd8e9c3cf87a9c8de266ea252a67c5c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename projection_def_id to item_def_id</title>
<updated>2024-12-11T00:59:43+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2024-12-11T00:59:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ec68498317f90221eeca4c5a14593914b42c2d0e'/>
<id>urn:sha1:ec68498317f90221eeca4c5a14593914b42c2d0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make sure to record deps from cached task in new solver on first run</title>
<updated>2024-12-04T16:15:44+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2024-12-03T22:47:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=988f28d442d2e959897e43a239f67d42e0297990'/>
<id>urn:sha1:988f28d442d2e959897e43a239f67d42e0297990</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Auto merge of #133626 - lcnr:fix-diesel, r=BoxyUwU</title>
<updated>2024-12-02T15:31:36+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2024-12-02T15:31:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=32eea2f4460b06b12acc98050a4211b8c0ccfd67'/>
<id>urn:sha1:32eea2f4460b06b12acc98050a4211b8c0ccfd67</id>
<content type='text'>
check local cache even if global is usable

we store overflow errors locally, even if we can otherwise use the global cache for this goal. should fix #133616, didn't test it locally yet as diesel tends to hit an unrelated debug assertion in rustdoc.

r? types
</content>
</entry>
<entry>
<title>check local cache even if global is usable</title>
<updated>2024-11-29T11:44:01+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2024-11-29T11:44:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=de94536553606a3b0c1e461751b0c431c3d642a4'/>
<id>urn:sha1:de94536553606a3b0c1e461751b0c431c3d642a4</id>
<content type='text'>
we store overflow errors locally, even if we can otherwise
use the global cache for this goal.
</content>
</entry>
<entry>
<title>support revealing defined opaque post borrowck</title>
<updated>2024-11-28T09:40:58+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2024-11-26T15:01:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=34a8c2dbba9fe2d57029027781500ab7fc305199'/>
<id>urn:sha1:34a8c2dbba9fe2d57029027781500ab7fc305199</id>
<content type='text'>
</content>
</entry>
<entry>
<title>uplift fold_regions to rustc_type_ir</title>
<updated>2024-11-28T09:40:58+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2024-11-27T17:37:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9fe7750bcd51f54b8ef171c3323b2acc54679533'/>
<id>urn:sha1:9fe7750bcd51f54b8ef171c3323b2acc54679533</id>
<content type='text'>
</content>
</entry>
</feed>
