mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +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]]
|
[[package]]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"asyncgit",
|
"asyncgit",
|
||||||
|
|
|
||||||
30
Cargo.toml
30
Cargo.toml
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
authors = ["extrawurst <mail@rusticorn.com>"]
|
authors = ["extrawurst <mail@rusticorn.com>"]
|
||||||
description = "blazing fast terminal-ui for git"
|
description = "blazing fast terminal-ui for git"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
@ -23,16 +23,6 @@ members = [
|
||||||
"scopetime",
|
"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]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
asyncgit = { path = "./asyncgit", version = "0.28.1", default-features = false }
|
asyncgit = { path = "./asyncgit", version = "0.28.1", default-features = false }
|
||||||
|
|
@ -84,17 +74,27 @@ unicode-truncate = "2.0"
|
||||||
unicode-width = "0.2"
|
unicode-width = "0.2"
|
||||||
which = "8.0"
|
which = "8.0"
|
||||||
|
|
||||||
[build-dependencies]
|
|
||||||
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.11"
|
env_logger = "0.11"
|
||||||
pretty_assertions = "1.4"
|
pretty_assertions = "1.4"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "actively-developed" }
|
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
|
# make debug build as fast as release
|
||||||
# usage of utf8 encoding inside tui
|
# usage of utf8 encoding inside tui
|
||||||
# makes their debug profile slow
|
# makes their debug profile slow
|
||||||
|
|
@ -102,7 +102,7 @@ maintenance = { status = "actively-developed" }
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = "z" # Optimize for size.
|
opt-level = "z" # Optimize for size.
|
||||||
strip = "debuginfo"
|
strip = "debuginfo"
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue