Cargo Features

[dependencies]
ratatui-explorer = { version = "0.2.1", default-features = false, features = ["crossterm", "termion", "termwiz"] }
default = crossterm

The crossterm feature is set by default whenever ratatui-explorer is added without default-features = false somewhere in the dependency tree.

crossterm default

Enables crossterm of ratatui

ratatui:

Generally an application will only use one backend, so you should only enable one of the following features: enables the CrosstermBackend backend and adds a dependency on crossterm.

termion

Enables termion of ratatui

ratatui:

enables the TermionBackend backend and adds a dependency on termion.

termwiz

Enables termwiz of ratatui

ratatui:

enables the TermwizBackend backend and adds a dependency on termwiz.

ratatui-explorer has 4 features without comments.