Skip to content

Commit 7579a12

Browse files
authored
Merge pull request #516 from kdheepak/update-to-ratatui-0.23.0
Bump to ratatui 0.23.0
2 parents e6d3784 + 0ea6ce7 commit 7579a12

23 files changed

+246
-241
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# configuration for https://editorconfig.org
2+
3+
root = true
4+
5+
[*.rs]
6+
indent_style = space
7+
indent_size = 2
8+
9+
[*.yml]
10+
indent_style = space
11+
indent_size = 2

.github/workflows/cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ jobs:
7272
- name: Compress binaries
7373
uses: svenstaro/upx-action@v2
7474
with:
75-
file: target/${{ matrix.target }}/release/taskwarrior-tui${{ matrix.binary_postfix }}
75+
files: |
76+
target/${{ matrix.target }}/release/taskwarrior-tui${{ matrix.binary_postfix }}
7677
args: ${{ matrix.upx_args }}
7778
strip: ${{ matrix.strip }}
7879
- name: Packaging binary

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
profile: minimal
66-
toolchain: stable
66+
toolchain: nightly
6767
override: true
6868
- run: rustup component add rustfmt
6969
- uses: actions-rs/cargo@v1

.rustfmt.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
max_width = 150
22
tab_spaces = 2
3+
group_imports = "StdExternalCrate"
4+
imports_granularity = "Crate"

Cargo.lock

Lines changed: 48 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anyhow = "1.0.75"
1717
better-panic = "0.3.0"
1818
cassowary = "0.3.0"
1919
chrono = "0.4.26"
20-
clap = { version = "4.4.0", features = ["derive"] }
20+
clap = { version = "4.4.1", features = ["derive"] }
2121
crossterm = { version = "0.27.0", features = [
2222
"event-stream",
2323
] }
@@ -29,16 +29,16 @@ log = "0.4.20"
2929
log4rs = "1.2.0"
3030
path-clean = "1.0.1"
3131
rand = "0.8.5"
32-
regex = "1.9.3"
32+
regex = "1.9.4"
3333
rustyline = { version = "12.0.0", features = ["with-file-history", "derive"] }
34-
serde = { version = "1.0.186", features = ["derive"] }
34+
serde = { version = "1.0.188", features = ["derive"] }
3535
serde_json = "1.0.105"
3636
shellexpand = "3.1.0"
3737
shlex = "1.1.0"
3838
task-hookrs = "0.9.0"
3939
tokio = { version = "1.32.0", features = ["full"] }
4040
tokio-stream = "0.1.14"
41-
tui = { package = "ratatui", version = "0.22.0" }
41+
ratatui = "0.23.0"
4242
unicode-segmentation = "1.10.1"
4343
unicode-truncate = "0.2.0"
4444
unicode-width = "0.1.10"
@@ -60,6 +60,6 @@ incremental = true
6060
lto = "off"
6161

6262
[build-dependencies]
63-
clap = { version = "4.4.0", features = ["derive"] }
63+
clap = { version = "4.4.1", features = ["derive"] }
6464
clap_complete = "4.4.0"
6565
shlex = "1.1.0"

0 commit comments

Comments
 (0)