gitui/Cargo.toml
2022-08-17 19:05:12 +02:00

93 lines
2.4 KiB
TOML

[package]
name = "gitui"
version = "0.21.0"
authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git"
edition = "2021"
rust-version = "1.60"
exclude = [".github/*", ".vscode/*", "assets/*"]
homepage = "https://github.com/extrawurst/gitui"
repository = "https://github.com/extrawurst/gitui"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities"]
keywords = [
"git",
"gui",
"cli",
"terminal",
"ui",
]
[dependencies]
anyhow = "1.0"
asyncgit = { path = "./asyncgit", version = "0.21", default-features = false }
backtrace = "0.3"
bitflags = "1.3"
bugreport = "0.5"
bytesize = { version = "1.1", default-features = false }
chrono = { version = "0.4", default-features = false, features = [ "clock" ] }
clap = { version = "3.2", features = [ "env", "cargo" ] }
crossbeam-channel = "0.5"
crossterm = { version = "0.23", features = [ "serde" ] }
dirs-next = "2.0"
easy-cast = "0.4"
filetreelist = { path = "./filetreelist", version = "0.5" }
fuzzy-matcher = "0.3"
gh-emoji = { version = "1.0", optional = true }
itertools = "0.10"
lazy_static = "1.4"
log = "0.4"
rayon-core = "1.9"
ron = "0.8"
scopeguard = "1.1"
scopetime = { path = "./scopetime", version = "0.1" }
serde = "1.0"
simplelog = { version = "0.12", default-features = false }
syntect = { version = "5.0", default-features = false, features = ["parsing", "default-syntaxes", "default-themes", "html", "regex-fancy"] }
textwrap = "0.15"
tui = { version = "0.18", default-features = false, features = ['crossterm', 'serde'] }
unicode-segmentation = "1.9"
unicode-truncate = "0.2"
unicode-width = "0.1"
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
which = "4.2"
# pprof is not available on windows
[target.'cfg(not(windows))'.dependencies]
pprof = { version = "0.10", features = ["flamegraph"], optional = true }
[dev-dependencies]
pretty_assertions = "1.0"
[badges]
maintenance = { status = "actively-developed" }
[features]
default =["ghemoji", "trace-libgit"]
ghemoji =["gh-emoji"]
timing =["scopetime/enabled"]
trace-libgit =["asyncgit/trace-libgit"]
[workspace]
members =[
"asyncgit",
"filetreelist",
"scopetime",
]
[profile.release]
lto = true
opt-level = 'z' # Optimize for size.
codegen-units = 1
# 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
[profile.dev]
split-debuginfo = "unpacked"