From 79752779036d31ee6427c731cd7c058eccf1034a Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 17 Apr 2020 16:23:39 +0200 Subject: add missing num-derive dependency --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index b1b9a12..db1e9c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ colored = "1" chrono = "0.4" rayon = "1" num-traits = "0.2" +num-derive = "0.3" humantime = "2.0" zip = "0.5" anyhow = "1.0" -- cgit v1.2.3 From e19519e155af95698807f377a5f6b525e255c4e5 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 18 Apr 2020 15:12:21 +0200 Subject: first version of the new filter pipeline --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index db1e9c5..2d64d51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,3 +24,8 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" dirs = "2.0" log = { version = "0.4", features = ["std"] } +thiserror = "1.0" +lalrpop-util = "0.18" + +[build-dependencies] +lalrpop = { version = "0.18", features = ["lexer"] } -- cgit v1.2.3 From ab909d2f3a0a59ae1b9a169ec79d4e9ffeddd1e1 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 21 Apr 2020 14:34:08 +0200 Subject: use readline/rustyline instead of stdin.read_line This gives us a history, nicer editing capabilities and the possibility to add completion in the future. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 2d64d51..2825776 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,7 @@ dirs = "2.0" log = { version = "0.4", features = ["std"] } thiserror = "1.0" lalrpop-util = "0.18" +rustyline = "6.1" [build-dependencies] lalrpop = { version = "0.18", features = ["lexer"] } -- cgit v1.2.3