From 9eeb5aebd891eecadae575f6a27509c018beca54 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Sun, 19 Jul 2020 23:11:06 -0700 Subject: Disable default ncurses backend from cursive Cursive includes the ncurses backend by default, which requires building it and overall causes a bunch of unnecessary complications. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 0240b65..6e94652 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ notify = "4.0" [dependencies.cursive] version = "0.15" +default-features = false features = ["termion-backend"] [dependencies.chrono] -- cgit v1.2.3 From 8b91a7c0b3d9bd4fac3b140f5bc8a40ac324289a Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 20 Jul 2020 19:31:23 +0530 Subject: bump to v0.1.4: remove ncurses as dependency --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 6e94652..9cf3639 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dijo" -version = "0.1.3" +version = "0.1.4" authors = ["Akshay "] edition = "2018" description = "Scriptable, curses-based, digital habit tracker" -- cgit v1.2.3 From 9102dc72be19f87ec9e2893a35f5020957135c1c Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 21 Jul 2020 20:47:05 +0530 Subject: bump to v0.1.5 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 9cf3639..3f297b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dijo" -version = "0.1.4" +version = "0.1.5" authors = ["Akshay "] edition = "2018" description = "Scriptable, curses-based, digital habit tracker" -- cgit v1.2.3 From 59b40932d4602fc7bf84f123930f9a0eb187f4a1 Mon Sep 17 00:00:00 2001 From: Akshay Date: Thu, 23 Jul 2020 10:07:21 +0530 Subject: bump to v0.2.0! --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 3f297b8..f215503 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dijo" -version = "0.1.5" +version = "0.2.0" authors = ["Akshay "] edition = "2018" description = "Scriptable, curses-based, digital habit tracker" -- cgit v1.2.3 From 7322949561fdbdc36a811b1368222fb5a2bf050a Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 20 Jul 2020 11:38:20 +0530 Subject: switch to crossterm backend --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index f215503..c587196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ notify = "4.0" [dependencies.cursive] version = "0.15" default-features = false -features = ["termion-backend"] +features = ["crossterm-backend"] [dependencies.chrono] version = "0.4" -- cgit v1.2.3