about summary refs log tree commit diff
path: root/compiler/rustc_traits/src/lib.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2023-07-03 15:19:08 +0000
committerMichael Goulet <michael@errs.io>2023-07-03 21:40:04 +0000
commit810fbf086d30521617faf8cdb3b6f175c6809766 (patch)
treee000ce120d3bdfdcc1a28098c3338008666f50d8 /compiler/rustc_traits/src/lib.rs
parent8931edf746da6aa2d86412516d805f5680929a5e (diff)
downloadrust-810fbf086d30521617faf8cdb3b6f175c6809766.tar.gz
rust-810fbf086d30521617faf8cdb3b6f175c6809766.zip
Remove chalk from the compiler
Diffstat (limited to 'compiler/rustc_traits/src/lib.rs')
-rw-r--r--compiler/rustc_traits/src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_traits/src/lib.rs b/compiler/rustc_traits/src/lib.rs
index 590d0bd0e42..dfa5814219b 100644
--- a/compiler/rustc_traits/src/lib.rs
+++ b/compiler/rustc_traits/src/lib.rs
@@ -1,5 +1,4 @@
-//! New recursive solver modeled on Chalk's recursive solver. Most of
-//! the guts are broken up into modules; see the comments in those modules.
+//! Queries that are independent from the main solver code.
 
 #![deny(rustc::untranslatable_diagnostic)]
 #![deny(rustc::diagnostic_outside_of_impl)]
@@ -11,7 +10,6 @@ extern crate tracing;
 #[macro_use]
 extern crate rustc_middle;
 
-mod chalk;
 mod codegen;
 mod dropck_outlives;
 mod evaluate_obligation;
@@ -29,7 +27,6 @@ pub fn provide(p: &mut Providers) {
     dropck_outlives::provide(p);
     evaluate_obligation::provide(p);
     implied_outlives_bounds::provide(p);
-    chalk::provide(p);
     normalize_projection_ty::provide(p);
     normalize_erasing_regions::provide(p);
     type_op::provide(p);