mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-27 00:14:52 +03:00
32 lines
673 B
TOML
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",
|
|
] |