2020-03-15 20:42:15 +03:00
|
|
|
[package]
|
2020-03-18 15:29:03 +03:00
|
|
|
name = "gitui"
|
2024-06-02 15:49:32 +03:00
|
|
|
version = "0.26.3"
|
2022-02-22 01:33:03 +03:00
|
|
|
authors = ["extrawurst <mail@rusticorn.com>"]
|
2020-03-18 13:40:54 +03:00
|
|
|
description = "blazing fast terminal-ui for git"
|
2022-08-17 17:30:54 +03:00
|
|
|
edition = "2021"
|
2024-02-19 13:27:34 +03:00
|
|
|
rust-version = "1.70"
|
2021-11-28 15:38:44 +03:00
|
|
|
exclude = [".github/*", ".vscode/*", "assets/*"]
|
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"]
|
2023-08-27 16:30:15 +03:00
|
|
|
keywords = ["git", "gui", "cli", "terminal", "ui"]
|
2024-03-27 16:07:05 +03:00
|
|
|
build = "build.rs"
|
2020-03-15 20:42:15 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-28 15:38:44 +03:00
|
|
|
anyhow = "1.0"
|
2024-04-14 21:31:05 +03:00
|
|
|
asyncgit = { path = "./asyncgit", version = "0.26", default-features = false }
|
2021-11-28 15:38:44 +03:00
|
|
|
backtrace = "0.3"
|
2024-06-25 05:46:05 +03:00
|
|
|
bitflags = "2.6"
|
2022-08-06 18:00:19 +03:00
|
|
|
bugreport = "0.5"
|
2024-02-12 13:53:22 +03:00
|
|
|
bwrap = { version = "1.3", features = ["use_std"] }
|
2023-08-24 05:20:29 +03:00
|
|
|
bytesize = { version = "1.3", default-features = false }
|
2023-08-27 16:30:15 +03:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
2024-02-09 05:40:20 +03:00
|
|
|
clap = { version = "4.5", features = ["env", "cargo"] }
|
2021-11-28 15:38:44 +03:00
|
|
|
crossbeam-channel = "0.5"
|
2024-09-17 13:12:43 +03:00
|
|
|
crossterm = { version = "0.28", features = ["serde"] }
|
2023-07-30 11:44:49 +03:00
|
|
|
dirs = "5.0"
|
2022-08-22 05:10:53 +03:00
|
|
|
easy-cast = "0.5"
|
2022-01-30 21:28:45 +03:00
|
|
|
filetreelist = { path = "./filetreelist", version = "0.5" }
|
2021-11-28 15:38:44 +03:00
|
|
|
fuzzy-matcher = "0.3"
|
2021-11-28 16:41:17 +03:00
|
|
|
gh-emoji = { version = "1.0", optional = true }
|
2024-02-12 13:53:22 +03:00
|
|
|
indexmap = "2"
|
2024-07-08 09:52:29 +03:00
|
|
|
itertools = "0.13"
|
2020-03-20 20:28:42 +03:00
|
|
|
log = "0.4"
|
2024-02-12 13:53:22 +03:00
|
|
|
notify = "6.1"
|
|
|
|
notify-debouncer-mini = "0.4"
|
2022-09-02 10:17:34 +03:00
|
|
|
once_cell = "1"
|
2024-09-18 17:31:21 +03:00
|
|
|
# pin until upgrading this does not introduce a duplicate dependency
|
2024-05-16 19:23:50 +03:00
|
|
|
parking_lot_core = "=0.9.9"
|
2024-10-23 10:34:24 +03:00
|
|
|
ratatui = { version = "0.29", default-features = false, features = [
|
2024-02-12 13:53:22 +03:00
|
|
|
'crossterm',
|
|
|
|
'serde',
|
|
|
|
] }
|
2024-01-18 05:29:47 +03:00
|
|
|
rayon-core = "1.12"
|
2022-08-17 17:40:08 +03:00
|
|
|
ron = "0.8"
|
2023-07-18 05:50:20 +03:00
|
|
|
scopeguard = "1.2"
|
2021-11-28 15:38:44 +03:00
|
|
|
scopetime = { path = "./scopetime", version = "0.1" }
|
2020-05-22 13:44:17 +03:00
|
|
|
serde = "1.0"
|
2023-07-12 14:45:07 +03:00
|
|
|
shellexpand = "3.1"
|
2022-08-17 17:30:54 +03:00
|
|
|
simplelog = { version = "0.12", default-features = false }
|
2024-10-21 10:20:17 +03:00
|
|
|
struct-patch = "0.8"
|
2024-02-12 13:53:22 +03:00
|
|
|
syntect = { version = "5.2", default-features = false, features = [
|
|
|
|
"parsing",
|
|
|
|
"default-syntaxes",
|
|
|
|
"default-themes",
|
|
|
|
"html",
|
|
|
|
] }
|
2024-10-23 10:34:24 +03:00
|
|
|
tui-textarea = "0.7"
|
2024-04-29 14:34:08 +03:00
|
|
|
two-face = { version = "0.4.0", default-features = false }
|
2024-09-18 05:25:46 +03:00
|
|
|
unicode-segmentation = "1.12"
|
2024-04-29 05:06:12 +03:00
|
|
|
unicode-truncate = "1.0"
|
2024-10-23 10:34:24 +03:00
|
|
|
unicode-width = "0.2"
|
2024-02-12 14:00:24 +03:00
|
|
|
which = "6.0"
|
2020-11-01 03:22:03 +03:00
|
|
|
|
2021-06-05 23:52:46 +03:00
|
|
|
[dev-dependencies]
|
2024-05-16 18:07:30 +03:00
|
|
|
env_logger = "0.11"
|
2023-07-07 05:12:16 +03:00
|
|
|
pretty_assertions = "1.4"
|
2024-02-12 13:53:22 +03:00
|
|
|
tempfile = "3"
|
2021-06-05 23:52:46 +03:00
|
|
|
|
2024-03-27 16:07:05 +03:00
|
|
|
[build-dependencies]
|
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
|
|
|
2020-06-23 13:24:57 +03:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
2020-03-22 04:17:03 +03:00
|
|
|
[features]
|
2023-08-27 16:30:15 +03:00
|
|
|
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
|
|
|
|
ghemoji = ["gh-emoji"]
|
2022-09-18 16:02:01 +03:00
|
|
|
# regex-* features are mutually exclusive.
|
2024-03-27 16:57:37 +03:00
|
|
|
regex-fancy = ["syntect/regex-fancy", "two-face/syntect-fancy"]
|
|
|
|
regex-onig = ["syntect/regex-onig", "two-face/syntect-onig"]
|
2023-08-27 16:30:15 +03:00
|
|
|
timing = ["scopetime/enabled"]
|
|
|
|
trace-libgit = ["asyncgit/trace-libgit"]
|
2022-09-18 16:02:01 +03:00
|
|
|
vendor-openssl = ["asyncgit/vendor-openssl"]
|
2020-03-24 20:02:58 +03:00
|
|
|
|
|
|
|
[workspace]
|
2024-02-12 13:53:22 +03:00
|
|
|
members = [
|
|
|
|
"asyncgit",
|
|
|
|
"filetreelist",
|
|
|
|
"git2-hooks",
|
|
|
|
"git2-testing",
|
|
|
|
"scopetime",
|
|
|
|
]
|
2020-04-08 01:44:13 +03:00
|
|
|
|
|
|
|
[profile.release]
|
2020-05-19 21:19:30 +03:00
|
|
|
lto = true
|
2024-02-12 13:53:22 +03:00
|
|
|
opt-level = 'z' # Optimize for size.
|
2020-05-28 00:52:53 +03:00
|
|
|
codegen-units = 1
|
2024-01-24 16:28:16 +03:00
|
|
|
strip = "debuginfo"
|
2020-12-12 16:12:12 +03:00
|
|
|
|
2024-02-12 13:53:22 +03:00
|
|
|
# make debug build as fast as release
|
|
|
|
# usage of utf8 encoding inside tui
|
2020-12-12 16:12:12 +03:00
|
|
|
# makes their debug profile slow
|
2023-04-22 09:05:48 +03:00
|
|
|
[profile.dev.package."ratatui"]
|
2022-11-19 19:39:11 +03:00
|
|
|
opt-level = 3
|