2020-03-15 20:42:15 +03:00
|
|
|
[package]
|
2020-03-18 15:29:03 +03:00
|
|
|
name = "gitui"
|
2020-03-15 20:42:15 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
2020-03-18 13:40:54 +03:00
|
|
|
description = "blazing fast terminal-ui for git"
|
2020-03-18 15:37:01 +03:00
|
|
|
license = "MIT"
|
|
|
|
homepage = "https://gitui.org"
|
2020-03-15 20:42:15 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-03-16 15:34:01 +03:00
|
|
|
git2 = "0.10"
|
|
|
|
crossterm = "0.15"
|
2020-03-18 16:58:09 +03:00
|
|
|
itertools = "0.9"
|
2020-03-20 03:40:39 +03:00
|
|
|
unicode-width = "0.1"
|
2020-03-16 15:34:01 +03:00
|
|
|
tui = { version = "0.8", default-features = false, features = ['crossterm'] }
|