Skip to content

Commit

Permalink
tui-realm 1.9 and ratatui support
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Aug 22, 2023
1 parent 598bb35 commit b22da75
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

- [Changelog](#changelog)
- [1.2.0](#120)
- [1.1.0](#110)
- [1.0.0](#100)
- [0.3.0](#030)
Expand All @@ -11,6 +12,15 @@

---

## 1.2.0

Released on 22/08/2023

- Added support for `ratatui`
- to enable `ratatui` set feature `ratatui` (enabled by default)
- to enable `tui` set feature `tui`.
- Deprecated features `with-crossterm`, `with-termion`

## 1.1.0

Released on 22/11/2021
Expand Down
18 changes: 11 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tui-realm-treeview"
version = "1.1.0"
version = "1.2.0"
authors = ["Christian Visintin"]
edition = "2021"
categories = ["command-line-utilities"]
Expand All @@ -15,18 +15,22 @@ repository = "https://github.com/veeso/tui-realm-treeview"

[dependencies]
orange-trees = "0.1.0"
tuirealm = { version = "^1.1.0", default-features = false, features = [ "derive" ]}
tuirealm = { version = "^1.9.0", default-features = false, features = [
"derive",
] }
unicode-width = "0.1.8"

[dev-dependencies]
crossterm = "0.20"
pretty_assertions = "0.7.2"
crossterm = "0.27"
pretty_assertions = "1.4"
tui-realm-stdlib = "^1.1.0"

[features]
default = [ "with-crossterm" ]
with-crossterm = [ "tuirealm/with-crossterm" ]
with-termion = [ "tuirealm/with-termion" ]
default = ["crossterm", "ratatui"]
crossterm = ["tuirealm/crossterm"]
ratatui = ["tuirealm/ratatui"]
termion = ["tuirealm/termion"]
tui = ["tuirealm/tui"]

[[example]]
name = "demo"
Expand Down

0 comments on commit b22da75

Please sign in to comment.