Move typeck.rs from cl-repl to cl-typeck

This commit is contained in:
John 2024-04-21 23:41:38 -05:00
parent 2a5e965edf
commit 8121c1c8bb
3 changed files with 5 additions and 3 deletions

View File

@ -17,6 +17,3 @@ cl-parser = { path = "../cl-parser" }
cl-interpret = { path = "../cl-interpret" }
repline = { path = "../../repline" }
argh = "0.1.12"
[dev-dependencies]
cl-typeck = { path = "../cl-typeck" }

View File

@ -10,3 +10,8 @@ publish.workspace = true
[dependencies]
cl-ast = { path = "../cl-ast" }
cl-structures = { path = "../cl-structures" }
[dev-dependencies]
repline = { path = "../../repline" }
cl-lexer = { path = "../cl-lexer" }
cl-parser = { path = "../cl-parser" }