2024-01-04 02:18:09 -06:00
|
|
|
[package]
|
2024-02-28 05:32:10 -06:00
|
|
|
name = "cl-repl"
|
2024-01-04 02:18:09 -06:00
|
|
|
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]
|
2024-02-29 19:49:50 -06:00
|
|
|
cl-ast = { path = "../cl-ast" }
|
2024-02-29 20:58:50 -06:00
|
|
|
cl-lexer = { path = "../cl-lexer" }
|
2024-02-29 19:36:06 -06:00
|
|
|
cl-token = { path = "../cl-token" }
|
2024-02-29 20:41:07 -06:00
|
|
|
cl-parser = { path = "../cl-parser" }
|
|
|
|
cl-interpret = { path = "../cl-interpret" }
|
2024-04-19 07:39:23 -05:00
|
|
|
repline = { path = "../../repline" }
|
2024-04-22 02:03:04 -05:00
|
|
|
argwerk = "0.20.4"
|