From 4fd3ec330a89e4177099c21277d3c12e97ca0c21 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 26 Dec 2021 15:22:57 +0100 Subject: Update rustyline to v9 Also refresh line always. This isn't a big deal for the small expressions we have here and also fixes a few annoying issues I had with the highlighter. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 4527862..6ae2e05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ categories = ["command-line-interface", "science", "parser-implementations"] license = "MIT" [dependencies] -rustyline = "4.1.0" +rustyline = "9.1.1" clap = "2.32.0" radix_fmt = "1.0.0" lazy_static = "1.3.0" -- cgit v1.2.3 From 7e673fc429df46f1792f5586965245b59d92990e Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 4 Jan 2022 17:38:09 +0100 Subject: rustyline: disable default features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 6ae2e05..4be652d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ categories = ["command-line-interface", "science", "parser-implementations"] license = "MIT" [dependencies] -rustyline = "9.1.1" +rustyline = { version = "9.1.1", default-features = false } clap = "2.32.0" radix_fmt = "1.0.0" lazy_static = "1.3.0" -- cgit v1.2.3