gitui/Cargo.toml

31 lines
633 B
TOML
Raw Normal View History

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-24 22:59:51 +03:00
readme = "README.md"
2020-03-15 20:42:15 +03:00
edition = "2018"
2020-03-24 20:02:58 +03:00
exclude = ["assets/*"]
2020-03-15 20:42:15 +03:00
[dependencies]
2020-03-16 15:34:01 +03:00
crossterm = "0.15"
2020-03-23 13:44:03 +03:00
tui = { version = "0.8", default-features=false, features = ['crossterm'] }
itertools = "0.9"
2020-03-20 20:28:42 +03:00
log = "0.4"
simplelog = "0.7"
dirs = "2.0"
2020-03-22 23:08:48 +03:00
crossbeam-channel = "0.4"
scopetime = { path = "./scopetime" }
2020-03-22 23:08:48 +03:00
asyncgit = { path = "./asyncgit" }
[features]
default=[]
timing=["scopetime/enabled"]
2020-03-24 20:02:58 +03:00
[workspace]
members=[
"asyncgit",
"scopetime",
]