mirror of
https://github.com/nushell/nushell.git
synced 2024-12-22 15:13:01 +01:00
d5255f6dbf
Evaluator, MVP
14 lines
304 B
TOML
14 lines
304 B
TOML
[tasks.lalrpop]
|
|
install_crate = { crate_name = "lalrpop", binary = "lalrpop", test_arg = "--help" }
|
|
command = "lalrpop"
|
|
args = ["src/parser/parser.lalrpop"]
|
|
|
|
[tasks.build]
|
|
command = "cargo"
|
|
args = ["build"]
|
|
dependencies = ["lalrpop"]
|
|
|
|
[tasks.run]
|
|
command = "cargo"
|
|
args = ["run"]
|
|
dependencies = ["build"] |