| 1 | [package] |
| 2 | name = "rush-cli" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | authors.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | |
| 9 | [[bin]] |
| 10 | name = "rush" |
| 11 | path = "src/main.rs" |
| 12 | |
| 13 | [dependencies] |
| 14 | rush-parser = { path = "../rush-parser" } |
| 15 | rush-expand = { path = "../rush-expand" } |
| 16 | rush-executor = { path = "../rush-executor" } |
| 17 | rush-job = { path = "../rush-job" } |
| 18 | rush-eval = { path = "../rush-eval" } |
| 19 | rush-interactive = { path = "../rush-interactive" } |
| 20 | |
| 21 | reedline = { workspace = true } |
| 22 | crossterm = { workspace = true } |
| 23 | nu-ansi-term = { workspace = true } |
| 24 | clap = { workspace = true } |
| 25 | anyhow = { workspace = true } |
| 26 | dirs = { workspace = true } |
| 27 | nix = { workspace = true } |