2020-03-15 20:42:15 +03:00
|
|
|
[package]
|
2020-03-18 15:29:03 +03:00
|
|
|
name = "gitui"
|
2021-03-04 18:06:53 +03:00
|
|
|
version = "0.12.0"
|
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-04-13 02:53:59 +03:00
|
|
|
exclude = [".github/*",".vscode/*"]
|
2020-03-27 04:05:57 +03:00
|
|
|
homepage = "https://github.com/extrawurst/gitui"
|
2020-04-28 12:15:05 +03:00
|
|
|
repository = "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 = [
|
2020-04-30 17:08:43 +03:00
|
|
|
"git",
|
2020-03-25 22:45:25 +03:00
|
|
|
"gui",
|
2020-04-30 17:08:43 +03:00
|
|
|
"cli",
|
|
|
|
"terminal",
|
2020-03-25 22:45:25 +03:00
|
|
|
"ui",
|
|
|
|
]
|
2020-03-15 20:42:15 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-05-20 13:01:46 +03:00
|
|
|
scopetime = { path = "./scopetime", version = "0.1" }
|
2021-03-04 00:13:06 +03:00
|
|
|
asyncgit = { path = "./asyncgit", version = "0.12" }
|
2020-12-29 19:53:15 +03:00
|
|
|
crossterm = { version = "0.19", features = [ "serde" ] }
|
2020-05-31 02:44:26 +03:00
|
|
|
clap = { version = "2.33", default-features = false }
|
2021-01-08 13:59:17 +03:00
|
|
|
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }
|
2021-03-04 00:31:41 +03:00
|
|
|
bytesize = { version = "1.0", default-features = false}
|
2020-12-28 09:09:18 +03:00
|
|
|
itertools = "0.10"
|
2020-10-22 09:19:32 +03:00
|
|
|
rayon-core = "1.9"
|
2020-03-20 20:28:42 +03:00
|
|
|
log = "0.4"
|
2020-12-21 14:54:29 +03:00
|
|
|
simplelog = { version = "0.9", default-features = false }
|
2020-10-25 20:18:03 +03:00
|
|
|
dirs-next = "2.0"
|
2020-10-12 09:25:53 +03:00
|
|
|
crossbeam-channel = "0.5"
|
2020-03-29 17:34:29 +03:00
|
|
|
scopeguard = "1.1"
|
2020-04-13 01:29:36 +03:00
|
|
|
bitflags = "1.2"
|
2020-05-05 14:47:21 +03:00
|
|
|
chrono = "0.4"
|
2020-05-22 13:44:17 +03:00
|
|
|
backtrace = "0.3"
|
|
|
|
ron = "0.6"
|
|
|
|
serde = "1.0"
|
2021-03-04 00:31:41 +03:00
|
|
|
anyhow = "1.0"
|
2020-06-01 23:02:40 +03:00
|
|
|
unicode-width = "0.1"
|
2020-12-08 03:17:53 +03:00
|
|
|
textwrap = "0.13"
|
2020-07-04 16:59:32 +03:00
|
|
|
|
2020-12-22 17:52:33 +03:00
|
|
|
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
|
2020-11-07 23:49:02 +03:00
|
|
|
which = "4.0"
|
2020-11-01 03:22:03 +03:00
|
|
|
|
2020-12-12 16:12:12 +03:00
|
|
|
# pprof is not available on windows
|
2020-07-04 17:24:51 +03:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2020-12-30 09:50:41 +03:00
|
|
|
pprof = { version = "0.4", features = ["flamegraph"], optional = true }
|
2020-03-22 04:17:03 +03:00
|
|
|
|
2020-06-23 13:24:57 +03:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
2020-03-22 04:17:03 +03:00
|
|
|
[features]
|
2020-10-10 18:52:11 +03:00
|
|
|
default=[]
|
2020-03-22 04:17:03 +03:00
|
|
|
timing=["scopetime/enabled"]
|
2020-03-24 20:02:58 +03:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members=[
|
|
|
|
"asyncgit",
|
|
|
|
"scopetime",
|
2020-04-08 01:44:13 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[profile.release]
|
2020-05-19 21:19:30 +03:00
|
|
|
lto = true
|
2020-04-08 01:44:13 +03:00
|
|
|
opt-level = 'z' # Optimize for size.
|
2020-05-28 00:52:53 +03:00
|
|
|
codegen-units = 1
|
2020-12-12 16:12:12 +03:00
|
|
|
|
|
|
|
# make debug build as fast as release
|
|
|
|
# usage of utf8 encoding inside tui
|
|
|
|
# makes their debug profile slow
|
|
|
|
[profile.dev.package."tui"]
|
|
|
|
opt-level = 3
|