Skip to content

Commit

Permalink
Switch from unmaintained tui-rs to ratatui crate
Browse files Browse the repository at this point in the history
  • Loading branch information
bartnv committed Oct 1, 2024
1 parent 0ff4cdf commit 859d867
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 52 deletions.
185 changes: 148 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ hyper-tungstenite = { version = "*", optional = true }
http-body-util = { version = "0", optional = true }
rustls-acme = { version = "*", features = [ "tokio" ], optional = true }
lazy_static = "1"
tui = { version = "0.19", default-features = false, features = ['termion'], optional = true }
ratatui = { version = "0.28", default-features = false, features = ['termion'], optional = true }
termion = { version = "4", optional = true }
chrono = "0"
git-version = "*"
regex = "*"

[features]
web = ["dep:hyper", "dep:hyper-util", "dep:hyper-tungstenite", "dep:http-body-util", "dep:tokio-stream", "dep:futures-util", "dep:rustls-acme", "dep:async-trait", "dep:ring"]
tui = ["dep:tui", "dep:termion"]
tui = ["dep:ratatui", "dep:termion"]

[profile.release]
strip = true
Expand Down
Loading

0 comments on commit 859d867

Please sign in to comment.