2021-08-10 20:51:08 +02:00
|
|
|
[package]
|
|
|
|
name = "nu-cli"
|
|
|
|
version = "0.1.0"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-08-10 20:51:08 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nu-engine = { path = "../nu-engine" }
|
2021-10-04 21:21:31 +02:00
|
|
|
nu-path = { path = "../nu-path" }
|
2021-08-10 20:51:08 +02:00
|
|
|
nu-parser = { path = "../nu-parser" }
|
2021-09-02 03:29:43 +02:00
|
|
|
nu-protocol = { path = "../nu-protocol" }
|
2021-12-16 13:17:29 +01:00
|
|
|
# nu-ansi-term = { path = "../nu-ansi-term" }
|
2022-01-02 23:36:32 +01:00
|
|
|
nu-ansi-term = "0.42.0"
|
2021-12-16 13:17:29 +01:00
|
|
|
nu-color-config = { path = "../nu-color-config" }
|
2021-10-04 21:21:31 +02:00
|
|
|
|
2021-09-23 01:49:39 +02:00
|
|
|
miette = { version = "3.0.0", features = ["fancy"] }
|
2021-09-20 23:37:26 +02:00
|
|
|
thiserror = "1.0.29"
|
2021-10-05 22:03:43 +02:00
|
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
2022-01-11 22:53:42 +01:00
|
|
|
log = "0.4"
|
2022-01-21 09:59:29 +01:00
|
|
|
is_executable = "1.0.1"
|