Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cdb50c6

Browse files
committedMar 25, 2020
Auto merge of #70383 - Centril:rollup-hmfft3y, r=Centril
Rollup of 7 pull requests Successful merges: - #70331 (Increase verbosity when using update syntax with private fields) - #70349 (move `hir_id_validation` to `rustc_passes` + simplify `hir::map` code) - #70361 (Update backtrace crate to 0.3.46) - #70364 (resolve: Remove `rustc_attrs` as a standalone feature gate) - #70369 (Fix smaller issues with invalid placeholder type errors) - #70373 (normalize some imports & prefer direct ones) - #70376 (Add test for #66312) Failed merges: r? @ghost
2 parents 02046a5 + 83fc855 commit cdb50c6

File tree

52 files changed

+315
-377
lines changed

Some content is hidden

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

52 files changed

+315
-377
lines changed
 

‎Cargo.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
121121

122122
[[package]]
123123
name = "backtrace"
124-
version = "0.3.45"
124+
version = "0.3.46"
125125
source = "registry+https://github.com/rust-lang/crates.io-index"
126-
checksum = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8"
126+
checksum = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
127127
dependencies = [
128128
"backtrace-sys",
129129
"cfg-if",
@@ -135,9 +135,9 @@ dependencies = [
135135

136136
[[package]]
137137
name = "backtrace-sys"
138-
version = "0.1.34"
138+
version = "0.1.35"
139139
source = "registry+https://github.com/rust-lang/crates.io-index"
140-
checksum = "ca797db0057bae1a7aa2eef3283a874695455cecf08a43bfb8507ee0ebc1ed69"
140+
checksum = "7de8aba10a69c8e8d7622c5710229485ec32e9d55fdad160ea559c086fdcd118"
141141
dependencies = [
142142
"cc",
143143
"compiler_builtins",

‎src/librustc/dep_graph/dep_node.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
//! user of the `DepNode` API of having to know how to compute the expected
5050
//! fingerprint for a given set of node parameters.
5151
52-
use crate::hir::map::DefPathHash;
53-
use crate::ich::Fingerprint;
5452
use crate::mir;
5553
use crate::mir::interpret::{GlobalId, LitToConstInput};
5654
use crate::traits;
@@ -62,7 +60,9 @@ use crate::traits::query::{
6260
use crate::ty::subst::SubstsRef;
6361
use crate::ty::{self, ParamEnvAnd, Ty, TyCtxt};
6462

63+
use rustc_data_structures::fingerprint::Fingerprint;
6564
use rustc_hir::def_id::{CrateNum, DefId, LocalDefId, CRATE_DEF_INDEX};
65+
use rustc_hir::definitions::DefPathHash;
6666
use rustc_hir::HirId;
6767
use rustc_span::symbol::Symbol;
6868
use std::hash::Hash;

0 commit comments

Comments
 (0)
Please sign in to comment.