diff options
author | Silas Bartha <silas@exvacuum.dev> | 2024-05-02 02:53:51 -0400 |
---|---|---|
committer | Silas Bartha <silas@exvacuum.dev> | 2024-05-02 02:53:51 -0400 |
commit | 6834194b9e16a7b5ee68b539ceb1a99b8f1ff90b (patch) | |
tree | bac5d0ff699f1c3c4f58d47c2f127f5d3432a528 /Cargo.toml | |
parent | 646db8328611f21a5850cc9834b6c72bfdf0c829 (diff) |
Added ratatui integration + logger redirectv0.1.1
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,6 @@ [package] name = "grex_terminal_display" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies] @@ -17,3 +17,8 @@ tag = "v0.1.0" [dependencies.grex_dither_post_process] git = "https://github.com/exvacuum/grex_dither_post_process" tag = "v0.1.2" + +[dependencies.ratatui] +version = "0.26.2" +features = ["unstable-widget-ref"] + |