iduartgomez / simag

An experimental, under development, agent-based AI framework
Mozilla Public License 2.0
5 stars 2 forks source link

Update tui requirement from 0.15 to 0.19 #57

Open dependabot[bot] opened 2 years ago

dependabot[bot] commented 2 years ago

Updates the requirements on tui to permit the latest version.

Release notes

Sourced from tui's releases.

v0.19.0

Features

  • Bump crossterm to 0.25
Changelog

Sourced from tui's changelog.

v0.19.0 - 2022-08-14

Features

  • Bump crossterm to 0.25

v0.18.0 - 2022-04-24

Features

  • Update crossterm to 0.23

v0.17.0 - 2022-01-22

Features

  • Add option to widgets::List to repeat the hightlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
</tr></table> 

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)