John
4a52d2bc6a
- cl-typeck: Add modules, intrinsic types, unify definition ids - cl-ast: make attribute lists `Default` - cl-structures: Add functions to iterate through a pool - cl-repl: Create an example REPL for the type checker
24 lines
621 B
TOML
24 lines
621 B
TOML
[package]
|
|
name = "cl-repl"
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cl-ast = { path = "../cl-ast" }
|
|
cl-lexer = { path = "../cl-lexer" }
|
|
cl-token = { path = "../cl-token" }
|
|
cl-parser = { path = "../cl-parser" }
|
|
cl-interpret = { path = "../cl-interpret" }
|
|
crossterm = "0.27.0"
|
|
argh = "0.1.12"
|
|
|
|
[dev-dependencies]
|
|
cl-structures = { path = "../cl-structures" }
|
|
cl-typeck = { path = "../cl-typeck" }
|