rust/compiler/rustc_ty_utils/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
917 B
Rust
Raw Normal View History

2020-01-13 12:40:30 +00:00
//! Various checks
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
2020-09-23 19:51:56 +00:00
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
2021-07-02 01:14:13 +00:00
#![feature(control_flow_enum)]
#![feature(never_type)]
#![feature(box_patterns)]
2020-01-13 12:40:30 +00:00
#![recursion_limit = "256"]
#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]
2020-01-13 12:40:30 +00:00
#[macro_use]
2020-03-29 14:41:09 +00:00
extern crate rustc_middle;
2020-01-13 12:40:30 +00:00
#[macro_use]
2020-08-14 06:05:01 +00:00
extern crate tracing;
2020-01-13 12:40:30 +00:00
2020-03-29 14:41:09 +00:00
use rustc_middle::ty::query::Providers;
2020-01-13 12:40:30 +00:00
mod assoc;
mod common_traits;
2022-06-28 20:45:05 +00:00
mod consts;
mod errors;
mod implied_bounds;
2020-02-12 16:24:32 +00:00
pub mod instance;
mod needs_drop;
pub mod representability;
2020-01-13 12:40:30 +00:00
mod ty;
pub fn provide(providers: &mut Providers) {
assoc::provide(providers);
common_traits::provide(providers);
consts::provide(providers);
implied_bounds::provide(providers);
needs_drop::provide(providers);
2020-01-13 12:40:30 +00:00
ty::provide(providers);
2020-04-05 05:21:36 +00:00
instance::provide(providers);
2020-01-13 12:40:30 +00:00
}