2024-01-04 08:18:09 +00:00
|
|
|
[package]
|
2024-02-28 11:32:10 +00:00
|
|
|
name = "cl-repl"
|
2024-01-04 08:18:09 +00: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-03-01 01:49:50 +00:00
|
|
|
cl-ast = { path = "../cl-ast" }
|
2024-03-01 02:58:50 +00:00
|
|
|
cl-lexer = { path = "../cl-lexer" }
|
2024-03-01 01:36:06 +00:00
|
|
|
cl-token = { path = "../cl-token" }
|
2024-03-01 02:41:07 +00:00
|
|
|
cl-parser = { path = "../cl-parser" }
|
|
|
|
cl-interpret = { path = "../cl-interpret" }
|
2024-04-19 12:39:23 +00:00
|
|
|
repline = { path = "../../repline" }
|
2024-03-01 08:35:58 +00:00
|
|
|
argh = "0.1.12"
|