gitui/Cargo.toml
2020-03-24 21:20:06 +01:00

32 lines
673 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"
edition = "2018"
homepage = "https://gitui.org"
readme = "README.md"
categories = ["command-line-utilities"]
exclude = ["assets/*"]
[dependencies]
crossterm = "0.15"
tui = { version = "0.8", default-features=false, features = ['crossterm'] }
itertools = "0.9"
log = "0.4"
simplelog = "0.7"
dirs = "2.0"
crossbeam-channel = "0.4"
scopetime = { path = "./scopetime" }
asyncgit = { path = "./asyncgit" }
[features]
default=[]
timing=["scopetime/enabled"]
[workspace]
members=[
"asyncgit",
"scopetime",
]