From 25298d35e40967a8ffbcb8e090e67efc690d6021 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Thu, 2 Jan 2020 06:54:25 +1300 Subject: [PATCH] Bump rustyline (#1146) * Slightly improve new which command * Bump rustyline --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2023e154db..30d3256bb5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3197,8 +3197,9 @@ dependencies = [ [[package]] name = "rustyline" -version = "5.0.5" -source = "git+https://github.com/kkawakam/rustyline.git#55dcab54fbab0ba0610799291276785e5b31199c" +version = "5.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a23cb19702a8d6afb6edb3c842386e680d4883760e0df74e6848e23c2a87a635" dependencies = [ "cfg-if", "dirs 2.0.2", diff --git a/Cargo.toml b/Cargo.toml index af79cada1f..7b8229ba89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ nu-macros = { version = "0.7.0", path = "./crates/nu-macros" } query_interface = "0.3.5" typetag = "0.1.4" -rustyline = { git = "https://github.com/kkawakam/rustyline.git" } +rustyline = "5.0.6" chrono = { version = "0.4.10", features = ["serde"] } derive-new = "0.5.8" prettytable-rs = "0.8.0"