Cargo Features

[dependencies]
bevy_simple_text_input = { version = "0.11.0", default-features = false, features = ["std", "libm"] }
default = std

The std feature is set by default whenever bevy_simple_text_input is added without default-features = false somewhere in the dependency tree.

std default

Enables std of bevy

bevy:

Allows access to the std crate.

libm

Enables libm of bevy

bevy:

Uses the libm maths library instead of the one provided in std and core.

bevy_simple_text_input has 3 features without comments.