Skip to content

Commit

Permalink
feat!: upgrade ratatui to v0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 3, 2024
2 parents 986909c + 73bce79 commit f3c3122
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
command: test
args: --features=render-tui,render-tui-crossterm,render-line,render-line-crossterm,signal-hook,render-line-autoconfigure,progress-tree --all --bins --tests --examples
- name: benchmarks
run: make bench
run: make bench-ci

build-and-test-on-windows:
runs-on: windows-latest
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ parking_lot = { version = "0.12.1", optional = true, default-features = false }
log = { version = "0.4.8", optional = true }

# render-tui
tui = { package = "ratatui", version = "0.25.0", optional = true, default-features = false }
tui-react = { version = "0.22.0", optional = true }
tui = { package = "ratatui", version = "0.26.0", optional = true, default-features = false }
tui-react = { version = "0.23.0", optional = true }
futures-core = { version = "0.3.4", optional = true, default-features = false }
futures-lite = { version = "2.1.0", optional = true }
humantime = { version = "2.1.0", optional = true }
unicode-segmentation = { version = "1.6.0", optional = true }
unicode-width = { version = "0.1.7", optional = true }
crosstermion = { version = "0.13.0", optional = true, default-features = false }
crosstermion = { version = "0.14.0", optional = true, default-features = false }
async-io = { version = "2.2.1", optional = true }

# localtime support for render-tui
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ tests: clippy check unit-test ## Run all tests we have
bench: ## Run criterion based benchmark, works on stable Rust
cargo bench

bench-ci: ## Just build the criterion based benchmark, avoid running.
cargo bench --no-run

##@ Development

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

0 comments on commit f3c3122

Please sign in to comment.