Skip to content

Commit f3c3122

Browse files
committed
feat!: upgrade ratatui to v0.26
2 parents 986909c + 73bce79 commit f3c3122

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
command: test
2424
args: --features=render-tui,render-tui-crossterm,render-line,render-line-crossterm,signal-hook,render-line-autoconfigure,progress-tree --all --bins --tests --examples
2525
- name: benchmarks
26-
run: make bench
26+
run: make bench-ci
2727

2828
build-and-test-on-windows:
2929
runs-on: windows-latest

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ parking_lot = { version = "0.12.1", optional = true, default-features = false }
6565
log = { version = "0.4.8", optional = true }
6666

6767
# render-tui
68-
tui = { package = "ratatui", version = "0.25.0", optional = true, default-features = false }
69-
tui-react = { version = "0.22.0", optional = true }
68+
tui = { package = "ratatui", version = "0.26.0", optional = true, default-features = false }
69+
tui-react = { version = "0.23.0", optional = true }
7070
futures-core = { version = "0.3.4", optional = true, default-features = false }
7171
futures-lite = { version = "2.1.0", optional = true }
7272
humantime = { version = "2.1.0", optional = true }
7373
unicode-segmentation = { version = "1.6.0", optional = true }
7474
unicode-width = { version = "0.1.7", optional = true }
75-
crosstermion = { version = "0.13.0", optional = true, default-features = false }
75+
crosstermion = { version = "0.14.0", optional = true, default-features = false }
7676
async-io = { version = "2.2.1", optional = true }
7777

7878
# localtime support for render-tui

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ tests: clippy check unit-test ## Run all tests we have
2626
bench: ## Run criterion based benchmark, works on stable Rust
2727
cargo bench
2828

29+
bench-ci: ## Just build the criterion based benchmark, avoid running.
30+
cargo bench --no-run
31+
2932
##@ Development
3033

3134
fmt: ## run nightly rustfmt for its extra features, but check that it won't upset stable rustfmt

0 commit comments

Comments
 (0)