mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
ed091aaf5d
Most of the files within the `dep_graph` module can be moved wholesale into `rustc_middle`. But two of them (`mod.rs` and `dep_node.rs`) have the same name as existing files in `rustc_middle`, so for those I just copied the contents into the existing files. The commit also moves `QueryContext` and `incremental_verify_ich*` because they are tightly intertwined with the dep graph code. And a couple of error structs moved as well.
9 lines
191 B
Rust
9 lines
191 B
Rust
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![cfg_attr(bootstrap, feature(assert_matches))]
|
|
#![feature(min_specialization)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub mod ich;
|
|
pub mod query;
|