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
somewhere in the dependency tree.default-features = false - derive default
-
Enables tuirealm_derive
- serialize
- 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 oncrossterm
. - termion
-
Enables termion and termion of ratatui ^0.28
ratatui:
enables the
TermionBackend
backend and adds a dependency ontermion
.
Tui-realm has 5 features without comments.