From 417916d2da1af376c3acdb7d8440d92d621600af Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Sat, 14 Sep 2019 11:10:08 +1200 Subject: [PATCH] Switch to rustline git instead of crates.io There have been a few fixes in rustyline we want to help test, so let's switch to their latest master ahead of the next release. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 44074162fc..04307ac7f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ documentation = "https://book.nushell.sh" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rustyline = "5.0.2" +rustyline = { git = "https://github.com/kkawakam/rustyline" } chrono = { version = "0.4.9", features = ["serde"] } derive-new = "0.5.8" prettytable-rs = "0.8.0"