Skip to content

Commit 371cf12

Browse files
committed
remove universes, and comment out lotsa code
1 parent ee0f517 commit 371cf12

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

+298
-4095
lines changed

Cargo.lock

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ members = [
2222
"crates/formality-macros",
2323
"crates/formality-core",
2424
"crates/formality-types",
25-
"crates/formality-logic",
2625
"crates/formality-decl",
2726
"crates/formality-mir",
2827
"crates/formality-check",

crates/formality-check/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ edition = "2021"
99
formality-types = { path = "../formality-types" }
1010
formality-macros = { path = "../formality-macros" }
1111
formality-core = { path = "../formality-core" }
12-
formality-logic = { path = "../formality-logic" }
1312
formality-decl = { path = "../formality-decl" }
1413
formality-mir = { path = "../formality-mir" }
1514
tracing = "0.1"

crates/formality-check/src/adts.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use formality_decl::grammar::{Adt, AdtBoundData, AdtVariant, Field};
2-
use formality_logic::Env;
32
use formality_types::{
43
cast::To,
54
grammar::{Fallible, Hypothesis},

crates/formality-check/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![allow(dead_code)]
2+
#![cfg(FIXME)]
23

34
use std::collections::VecDeque;
45

crates/formality-decl/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ edition = "2021"
99
formality-types = { path = "../formality-types" }
1010
formality-macros = { path = "../formality-macros" }
1111
formality-core = { path = "../formality-core" }
12-
formality-logic = { path = "../formality-logic" }
1312
tracing = "0.1"
1413
contracts = "0.6.3"
1514
anyhow = "1.0.66"

0 commit comments

Comments
 (0)