Cargo Features

[dependencies]
tuirealm = { version = "2.0.3", default-features = false, features = ["derive", "serialize", "crossterm", "termion"] }
default = crossterm, derive

These default features are set whenever tuirealm is added without default-features = false somewhere in the dependency tree.

derive default

Enables tuirealm_derive

serialize

Enables serde, serde of bitflags

crossterm default

Enables crossterm and crossterm of ratatui ^0.28

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 and termion of ratatui ^0.28

ratatui:

enables the TermionBackend backend and adds a dependency on termion.

Tui-realm has 5 features without comments.