2020-03-15 20:42:15 +03:00
|
|
|
[package]
|
2020-03-18 15:29:03 +03:00
|
|
|
name = "gitui"
|
2020-04-04 00:37:11 +03:00
|
|
|
version = "0.1.3"
|
2020-03-15 20:42:15 +03:00
|
|
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
2020-03-18 13:40:54 +03:00
|
|
|
description = "blazing fast terminal-ui for git"
|
2020-03-24 23:20:06 +03:00
|
|
|
edition = "2018"
|
2020-03-25 22:45:25 +03:00
|
|
|
exclude = ["assets/*"]
|
2020-03-27 04:05:57 +03:00
|
|
|
homepage = "https://github.com/extrawurst/gitui"
|
2020-03-24 22:59:51 +03:00
|
|
|
readme = "README.md"
|
2020-03-24 23:22:56 +03:00
|
|
|
license = "MIT"
|
2020-03-24 23:20:06 +03:00
|
|
|
categories = ["command-line-utilities"]
|
2020-03-25 22:45:25 +03:00
|
|
|
keywords = [
|
|
|
|
"git",
|
|
|
|
"gui",
|
|
|
|
"cli",
|
|
|
|
"terminal",
|
|
|
|
"ui",
|
|
|
|
]
|
2020-03-15 20:42:15 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-26 15:12:16 +03:00
|
|
|
crossterm = "0.16"
|
2020-03-23 13:44:03 +03:00
|
|
|
tui = { version = "0.8", default-features=false, features = ['crossterm'] }
|
2020-03-18 16:58:09 +03:00
|
|
|
itertools = "0.9"
|
2020-03-26 01:37:00 +03:00
|
|
|
rayon-core = "1.7"
|
2020-03-20 20:28:42 +03:00
|
|
|
log = "0.4"
|
2020-03-30 13:02:34 +03:00
|
|
|
simplelog = { version = "0.7", default-features=false }
|
2020-03-20 20:28:42 +03:00
|
|
|
dirs = "2.0"
|
2020-03-22 23:08:48 +03:00
|
|
|
crossbeam-channel = "0.4"
|
2020-03-29 17:34:29 +03:00
|
|
|
scopeguard = "1.1"
|
|
|
|
backtrace = { version = "0.3" }
|
2020-03-25 17:42:41 +03:00
|
|
|
scopetime = { path = "./scopetime", version = "0.1" }
|
|
|
|
asyncgit = { path = "./asyncgit", version = "0.1" }
|
2020-03-22 04:17:03 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default=[]
|
|
|
|
timing=["scopetime/enabled"]
|
2020-03-24 20:02:58 +03:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members=[
|
|
|
|
"asyncgit",
|
|
|
|
"scopetime",
|
|
|
|
]
|