mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
version bump and formatting
This commit is contained in:
parent
6aeffb4be8
commit
e24fb45df1
2 changed files with 16 additions and 16 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -1134,7 +1134,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gitui"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"asyncgit",
|
||||
|
|
|
|||
30
Cargo.toml
30
Cargo.toml
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "gitui"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
authors = ["extrawurst <mail@rusticorn.com>"]
|
||||
description = "blazing fast terminal-ui for git"
|
||||
edition = "2021"
|
||||
|
|
@ -23,16 +23,6 @@ members = [
|
|||
"scopetime",
|
||||
]
|
||||
|
||||
[features]
|
||||
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
|
||||
ghemoji = ["gh-emoji"]
|
||||
# regex-* features are mutually exclusive.
|
||||
regex-fancy = ["syntect/regex-fancy", "two-face/syntect-fancy"]
|
||||
regex-onig = ["syntect/regex-onig", "two-face/syntect-onig"]
|
||||
timing = ["scopetime/enabled"]
|
||||
trace-libgit = ["asyncgit/trace-libgit"]
|
||||
vendor-openssl = ["asyncgit/vendor-openssl"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
asyncgit = { path = "./asyncgit", version = "0.28.1", default-features = false }
|
||||
|
|
@ -84,17 +74,27 @@ unicode-truncate = "2.0"
|
|||
unicode-width = "0.2"
|
||||
which = "8.0"
|
||||
|
||||
[build-dependencies]
|
||||
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.11"
|
||||
pretty_assertions = "1.4"
|
||||
tempfile = "3"
|
||||
|
||||
[build-dependencies]
|
||||
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "actively-developed" }
|
||||
|
||||
[features]
|
||||
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
|
||||
ghemoji = ["gh-emoji"]
|
||||
# regex-* features are mutually exclusive.
|
||||
regex-fancy = ["syntect/regex-fancy", "two-face/syntect-fancy"]
|
||||
regex-onig = ["syntect/regex-onig", "two-face/syntect-onig"]
|
||||
timing = ["scopetime/enabled"]
|
||||
trace-libgit = ["asyncgit/trace-libgit"]
|
||||
vendor-openssl = ["asyncgit/vendor-openssl"]
|
||||
|
||||
# make debug build as fast as release
|
||||
# usage of utf8 encoding inside tui
|
||||
# makes their debug profile slow
|
||||
|
|
@ -102,7 +102,7 @@ maintenance = { status = "actively-developed" }
|
|||
opt-level = 3
|
||||
|
||||
[profile.release]
|
||||
opt-level = "z" # Optimize for size.
|
||||
opt-level = "z" # Optimize for size.
|
||||
strip = "debuginfo"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue