diff options
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | asyncgit/Cargo.toml | 2 | ||||
-rw-r--r-- | filetreelist/Cargo.toml | 2 |
4 files changed, 7 insertions, 7 deletions
@@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.16.2" +version = "0.16.3" dependencies = [ "crossbeam-channel", "easy-cast", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "filetreelist" -version = "0.1.2" +version = "0.2.0" dependencies = [ "pretty_assertions", "scopetime", @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.16.1" +version = "0.16.2" dependencies = [ "anyhow", "asyncgit", @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.16.1" +version = "0.16.2" authors = ["Stephan Dilly <dilly.stephan@gmail.com>"] description = "blazing fast terminal-ui for git" edition = "2018" @@ -21,7 +21,7 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } asyncgit = { path = "./asyncgit", version = "0.16" } -filetreelist = { path = "./filetreelist", version = "0.1" } +filetreelist = { path = "./filetreelist", version = "0.2" } crossterm = { version = "0.19", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.15", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 0bb8bcc7..a4549094 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.16.2" +version = "0.16.3" authors = ["Stephan Dilly <dilly.stephan@gmail.com>"] edition = "2018" description = "allow using git2 in a asynchronous context" diff --git a/filetreelist/Cargo.toml b/filetreelist/Cargo.toml index 999fa8ef..a5157cae 100644 --- a/filetreelist/Cargo.toml +++ b/filetreelist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filetreelist" -version = "0.1.2" +version = "0.2.0" authors = ["Stephan Dilly <dilly.stephan@gmail.com>"] edition = "2018" description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more" |