Skip to content

Commit e24fb45

Browse files
committed
version bump and formatting
1 parent 6aeffb4 commit e24fb45

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.28.0"
3+
version = "0.28.1"
44
authors = ["extrawurst <mail@rusticorn.com>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2021"
@@ -23,16 +23,6 @@ members = [
2323
"scopetime",
2424
]
2525

26-
[features]
27-
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
28-
ghemoji = ["gh-emoji"]
29-
# regex-* features are mutually exclusive.
30-
regex-fancy = ["syntect/regex-fancy", "two-face/syntect-fancy"]
31-
regex-onig = ["syntect/regex-onig", "two-face/syntect-onig"]
32-
timing = ["scopetime/enabled"]
33-
trace-libgit = ["asyncgit/trace-libgit"]
34-
vendor-openssl = ["asyncgit/vendor-openssl"]
35-
3626
[dependencies]
3727
anyhow = "1.0"
3828
asyncgit = { path = "./asyncgit", version = "0.28.1", default-features = false }
@@ -84,25 +74,35 @@ unicode-truncate = "2.0"
8474
unicode-width = "0.2"
8575
which = "8.0"
8676

87-
[build-dependencies]
88-
chrono = { version = "0.4", default-features = false, features = ["clock"] }
89-
9077
[dev-dependencies]
9178
env_logger = "0.11"
9279
pretty_assertions = "1.4"
9380
tempfile = "3"
9481

82+
[build-dependencies]
83+
chrono = { version = "0.4", default-features = false, features = ["clock"] }
84+
9585
[badges]
9686
maintenance = { status = "actively-developed" }
9787

88+
[features]
89+
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
90+
ghemoji = ["gh-emoji"]
91+
# regex-* features are mutually exclusive.
92+
regex-fancy = ["syntect/regex-fancy", "two-face/syntect-fancy"]
93+
regex-onig = ["syntect/regex-onig", "two-face/syntect-onig"]
94+
timing = ["scopetime/enabled"]
95+
trace-libgit = ["asyncgit/trace-libgit"]
96+
vendor-openssl = ["asyncgit/vendor-openssl"]
97+
9898
# make debug build as fast as release
9999
# usage of utf8 encoding inside tui
100100
# makes their debug profile slow
101101
[profile.dev.package."ratatui"]
102102
opt-level = 3
103103

104104
[profile.release]
105-
opt-level = "z" # Optimize for size.
105+
opt-level = "z" # Optimize for size.
106106
strip = "debuginfo"
107107
lto = true
108108
codegen-units = 1

0 commit comments

Comments
 (0)