gitui/Cargo.toml
2020-03-23 00:14:57 +01:00

24 lines
532 B
TOML

[package]
name = "gitui"
version = "0.1.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
license = "MIT"
homepage = "https://gitui.org"
edition = "2018"
[dependencies]
crossterm = "0.15"
itertools = "0.9"
log = "0.4"
simplelog = "0.7"
dirs = "2.0"
crossbeam-channel = "0.4"
scopetime = { path = "./scopetime" }
asyncgit = { path = "./asyncgit" }
tui = { version = "0.8", default-features=false, features = ['crossterm'] }
[features]
default=[]
timing=["scopetime/enabled"]