nushell/crates/nu-cli/Cargo.toml
Stefan Holderbach 8018ae3286
Pin reedline v0.6.0 for the nushell v0.63.0 release (#5620)
Release notes: https://github.com/nushell/reedline/releases/tag/v0.6.0

This release contains several bug fixes and improvements to the vi-emulation and documentation.

- Improvements to the vi-style keybindings (@sadmac7000):
  - `w` now correctly moves to the beginning of the word.
  - `e` to move to the end of the word.
- Bugfixes:
  - Support terminal emulators that erroneously report a size of 0x0 by assuming a default size to avoid panics and draw nevertheless (@DhruvDh)
  - Fix `ListMenu` layout calculations. Avoids scrolling bug when wrapping occurs due to the line numbering (@ahkrr)
  - Avoid allocating to the total history capacity which can cause the application to go out of memory (@sholderbach)
- Documentation improvements including addition of documentation intended for reedline developers (@petrisch, @sholderbach)
2022-05-24 00:39:55 +02:00

31 lines
967 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "CLI-related functionality for Nushell"
edition = "2021"
license = "MIT"
name = "nu-cli"
version = "0.62.1"
[dev-dependencies]
nu-test-support = { path="../nu-test-support", version = "0.62.1" }
nu-command = { path = "../nu-command", version = "0.62.1" }
[dependencies]
nu-engine = { path = "../nu-engine", version = "0.62.1" }
nu-path = { path = "../nu-path", version = "0.62.1" }
nu-parser = { path = "../nu-parser", version = "0.62.1" }
nu-protocol = { path = "../nu-protocol", version = "0.62.1" }
nu-utils = { path = "../nu-utils", version = "0.62.1" }
nu-ansi-term = "0.45.1"
nu-color-config = { path = "../nu-color-config", version = "0.62.1" }
reedline = { version = "0.6.0", features = ["bashisms"]}
crossterm = "0.23.0"
miette = { version = "4.5.0", features = ["fancy"] }
thiserror = "1.0.29"
fuzzy-matcher = "0.3.7"
log = "0.4"
is_executable = "1.0.1"
[features]
plugin = []