Skip to content

Commit 328ecfb

Browse files
committed
tombi config
1 parent 8ed7006 commit 328ecfb

3 files changed

Lines changed: 34 additions & 17 deletions

File tree

Cargo.toml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,14 @@ notify = "8"
4848
notify-debouncer-mini = "0.7"
4949
once_cell = "1"
5050
parking_lot_core = "0.9"
51-
ratatui = { version = "0.30", default-features = false, features = [
52-
"crossterm",
53-
"serde",
54-
] }
51+
ratatui = {
52+
version = "0.30",
53+
default-features = false,
54+
features = [
55+
"crossterm",
56+
"serde",
57+
]
58+
}
5559
ratatui-textarea = "0.8"
5660
rayon-core = "1.13"
5761
ron = "0.12"
@@ -61,13 +65,17 @@ serde = "1.0"
6165
shellexpand = "3.1"
6266
simplelog = { version = "0.12", default-features = false }
6367
struct-patch = "0.10"
64-
syntect = { version = "5.3", default-features = false, features = [
65-
"default-syntaxes",
66-
"default-themes",
67-
"html",
68-
"parsing",
69-
"plist-load",
70-
] }
68+
syntect = {
69+
version = "5.3",
70+
default-features = false,
71+
features = [
72+
"default-syntaxes",
73+
"default-themes",
74+
"html",
75+
"parsing",
76+
"plist-load",
77+
]
78+
}
7179
two-face = { version = "0.4.4", default-features = false }
7280
unicode-segmentation = "1.12"
7381
unicode-truncate = "2.0"

asyncgit/Cargo.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,16 @@ easy-cast = "0.5"
1919
fuzzy-matcher = "0.3"
2020
git2 = { version = "0.21", features = ["https"] }
2121
git2-hooks = { path = "../git2-hooks", version = "0.7" }
22-
gix = { version = "0.78.0", default-features = false, features = [
23-
"mailmap",
24-
"max-performance",
25-
"revision",
26-
"status",
27-
] }
22+
gix = {
23+
version = "0.78.0",
24+
default-features = false,
25+
features = [
26+
"mailmap",
27+
"max-performance",
28+
"revision",
29+
"status",
30+
]
31+
}
2832
log = "0.4"
2933
# git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]}
3034
# git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]}

tombi.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Keep dependency inline tables on a single line. Multi-line inline tables are
2+
# TOML 1.1 syntax that Cargo on our MSRV (rust 1.88) rejects with
3+
# "invalid inline table", so tombi must not expand them.
4+
[format.rules]
5+
line-width = 220

0 commit comments

Comments
 (0)