mirror of
https://github.com/nushell/nushell
synced 2025-01-22 18:05:21 +00:00
1a16b9a2c4
* Refactor usage of is_perf_true to be a parameter passed around * Move repl loop and command/script execution to nu_cli * Move config setup out of nu_cli * Update config_files.rs * Update main.rs Co-authored-by: JT <547158+jntrnr@users.noreply.github.com>
26 lines
716 B
TOML
26 lines
716 B
TOML
[package]
|
|
name = "nu-cli"
|
|
version = "0.59.1"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
nu-engine = { path = "../nu-engine", version = "0.59.1" }
|
|
nu-path = { path = "../nu-path", version = "0.59.1" }
|
|
nu-parser = { path = "../nu-parser", version = "0.59.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.59.1" }
|
|
# nu-ansi-term = { path = "../nu-ansi-term", version = "0.59.1" }
|
|
nu-ansi-term = "0.42.0"
|
|
|
|
nu-color-config = { path = "../nu-color-config" }
|
|
|
|
crossterm = "0.23.0"
|
|
crossterm_winapi = "0.9.0"
|
|
miette = { version = "4.1.0", features = ["fancy"] }
|
|
thiserror = "1.0.29"
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
|
|
|
log = "0.4"
|
|
is_executable = "1.0.1"
|
|
|
|
[features]
|
|
plugin = []
|