rust/compiler/rustc_trait_selection/src/lib.rs

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

50 lines
1.3 KiB
Rust
Raw Normal View History

//! This crate defines the trait resolution method.
2020-02-22 10:44:18 +00:00
//!
//! - **Traits.** Trait resolution is implemented in the `traits` module.
//!
2020-04-11 20:02:35 +00:00
//! For more information about how rustc works, see the [rustc-dev-guide].
2020-02-22 10:44:18 +00:00
//!
2020-04-11 20:02:35 +00:00
//! [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
2020-02-22 10:44:18 +00:00
//!
//! # 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/")]
2023-11-13 12:39:17 +00:00
#![doc(rust_logo)]
#![feature(rustdoc_internals)]
#![allow(internal_features)]
#![allow(rustc::diagnostic_outside_of_impl)]
#![allow(rustc::untranslatable_diagnostic)]
#![feature(assert_matches)]
#![feature(associated_type_bounds)]
2020-09-10 07:06:30 +00:00
#![feature(box_patterns)]
#![feature(control_flow_enum)]
#![feature(extract_if)]
#![feature(let_chains)]
2024-01-08 10:13:50 +00:00
#![feature(option_take_if)]
#![feature(never_type)]
#![feature(type_alias_impl_trait)]
#![cfg_attr(bootstrap, feature(min_specialization))]
2020-02-11 21:39:02 +00:00
#![recursion_limit = "512"] // For rustdoc
2020-02-22 10:44:18 +00:00
#[macro_use]
extern crate rustc_macros;
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
2020-02-22 10:44:18 +00:00
#[macro_use]
extern crate rustc_data_structures;
#[macro_use]
2020-08-14 06:05:01 +00:00
extern crate tracing;
2020-02-22 10:44:18 +00:00
#[macro_use]
2020-03-29 14:41:09 +00:00
extern crate rustc_middle;
2021-06-17 04:20:18 +00:00
#[macro_use]
extern crate smallvec;
2020-02-22 10:44:18 +00:00
pub mod errors;
2020-02-22 10:44:18 +00:00
pub mod infer;
pub mod regions;
pub mod solve;
2020-02-22 10:44:18 +00:00
pub mod traits;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }