Cargo Features

[dependencies]
bevy_ratatui = { version = "0.8.3", default-features = false, features = ["std", "async_executor", "libm", "critical-section", "serde"] }
default = async_executor, std

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

std default

Features for std platforms

Enables std of bevy

async_executor default

Enables async_executor of bevy

bevy:

Uses async-executor as a task execution backend.

libm

Features for no_std platforms

Enables libm of bevy

critical-section

Enables critical-section of bevy

bevy:

critical-section provides the building blocks for synchronization primitives on all platforms, including no_std.

serde

Allow enabling serde support for downstream crates

Enables serde of crossterm