bevy_simple_text_input 0.14.0

Bevy plugin for a simple single-line text input widget.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "bevy_simple_text_input"
version = "0.14.0"
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bevy plugin for a simple single-line text input widget."
homepage = "https://github.com/rparrett/bevy_simple_text_input"
documentation = "https://docs.rs/bevy_simple_text_input"
readme = "README.md"
keywords = [
    "bevy",
    "gamedev",
]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rparrett/bevy_simple_text_input"

[features]
default = ["std"]
libm = ["bevy/libm"]
std = ["bevy/std"]

[lib]
name = "bevy_simple_text_input"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "focus"
path = "examples/focus.rs"

[[example]]
name = "password"
path = "examples/password.rs"

[[example]]
name = "value"
path = "examples/value.rs"

[dependencies.bevy]
version = "0.18.0"
features = [
    "bevy_ui",
    "bevy_asset",
    "bevy_text",
    "bevy_window",
]
default-features = false

[dev-dependencies.bevy]
version = "0.18.0"
default-features = true

[lints.clippy]
type_complexity = "allow"

[lints.rust]
missing_docs = "warn"