Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0e19020

Browse files
committedJan 28, 2021
Auto merge of rust-lang#81461 - JohnTitor:rollup-b0ij25f, r=JohnTitor
Rollup of 13 pull requests Successful merges: - rust-lang#70904 (Stabilize `Seek::stream_position` (feature `seek_convenience`)) - rust-lang#79951 (Refractor a few more types to `rustc_type_ir` ) - rust-lang#80868 (Print failure message on all tests that should panic, but don't) - rust-lang#81062 (Improve diagnostics for Precise Capture) - rust-lang#81277 (Make more traits of the From/Into family diagnostic items) - rust-lang#81284 (Make `-Z time-passes` less noisy) - rust-lang#81379 (Improve URLs handling) - rust-lang#81416 (Tweak suggestion for missing field in patterns) - rust-lang#81426 (const_evaluatable: expand abstract consts in try_unify) - rust-lang#81428 (compiletest: Add two more unit tests) - rust-lang#81430 (add const_evaluatable_checked test) - rust-lang#81433 (const_evaluatable: stop looking into type aliases) - rust-lang#81445 (Update cargo) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents e32f372 + f3dfbfc commit 0e19020

File tree

95 files changed

+1928
-733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+1928
-733
lines changed
 

‎Cargo.lock

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
770770

771771
[[package]]
772772
name = "crates-io"
773-
version = "0.31.1"
773+
version = "0.33.0"
774774
dependencies = [
775775
"anyhow",
776776
"curl",
@@ -1337,9 +1337,9 @@ dependencies = [
13371337

13381338
[[package]]
13391339
name = "git2"
1340-
version = "0.13.14"
1340+
version = "0.13.17"
13411341
source = "registry+https://github.com/rust-lang/crates.io-index"
1342-
checksum = "186dd99cc77576e58344ad614fa9bb27bad9d048f85de3ca850c1f4e8b048260"
1342+
checksum = "1d250f5f82326884bd39c2853577e70a121775db76818ffa452ed1e80de12986"
13431343
dependencies = [
13441344
"bitflags",
13451345
"libc",
@@ -1792,9 +1792,9 @@ dependencies = [
17921792

17931793
[[package]]
17941794
name = "libgit2-sys"
1795-
version = "0.12.16+1.1.0"
1795+
version = "0.12.18+1.1.0"
17961796
source = "registry+https://github.com/rust-lang/crates.io-index"
1797-
checksum = "9f91b2f931ee975a98155195be8cd82d02e8e029d7d793d2bac1b8181ac97020"
1797+
checksum = "3da6a42da88fc37ee1ecda212ffa254c25713532980005d5f7c0b0fbe7e6e885"
17981798
dependencies = [
17991799
"cc",
18001800
"libc",
@@ -4345,6 +4345,7 @@ dependencies = [
43454345
"bitflags",
43464346
"rustc_data_structures",
43474347
"rustc_index",
4348+
"rustc_macros",
43484349
"rustc_serialize",
43494350
]
43504351

‎compiler/rustc_codegen_cranelift/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,14 @@ mod vtable;
8383
mod prelude {
8484
pub(crate) use std::convert::{TryFrom, TryInto};
8585

86-
pub(crate) use rustc_ast::ast::{FloatTy, IntTy, UintTy};
8786
pub(crate) use rustc_span::Span;
8887

8988
pub(crate) use rustc_hir::def_id::{DefId, LOCAL_CRATE};
9089
pub(crate) use rustc_middle::bug;
9190
pub(crate) use rustc_middle::mir::{self, *};
9291
pub(crate) use rustc_middle::ty::layout::{self, TyAndLayout};
9392
pub(crate) use rustc_middle::ty::{
94-
self, FnSig, Instance, InstanceDef, ParamEnv, Ty, TyCtxt, TypeAndMut, TypeFoldable,
93+
self, FloatTy, FnSig, Instance, InstanceDef, IntTy, ParamEnv, Ty, TyCtxt, TypeAndMut, TypeFoldable, UintTy,
9594
};
9695
pub(crate) use rustc_target::abi::{Abi, LayoutOf, Scalar, Size, VariantIdx};
9796

0 commit comments

Comments
 (0)
This repository has been archived.