20 lines
536 B
TOML
20 lines
536 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" }
|
|
repline = { path = "../../repline" }
|
|
argwerk = "0.20.4"
|