Cargo Features

[dependencies]
ratatui-image = { version = "3.0.0", default-features = false, features = ["crossterm", "image-defaults", "termion", "termwiz", "serde"] }
default = image-defaults

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

crossterm

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.

Required by the binary

image-defaults default

Enables image

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.

serde

Enables serde