hephae 0.6.0

A personalized, opinionated Bevy plugin that adds support for drawing and batching arbitrary vertices and indices.
[dependencies.hephae-atlas]
optional = true
version = "0.6.0"

[dependencies.hephae-gui]
optional = true
version = "0.6.0"

[dependencies.hephae-locale]
optional = true
version = "0.6.0"

[dependencies.hephae-render]
version = "0.6.0"

[dependencies.hephae-text]
optional = true
version = "0.6.0"

[dependencies.hephae-utils]
version = "0.6.0"

[dev-dependencies.bevy]
default-features = false
features = ["bevy_window", "bevy_winit", "bevy_core_pipeline", "png"]
version = "0.15"

[dev-dependencies.bytemuck]
features = ["derive"]
version = "1"

[features]
atlas = ["dep:hephae-atlas"]
default = ["atlas", "gui", "locale", "text"]
gui = ["dep:hephae-gui"]
locale = ["dep:hephae-locale", "hephae-text?/locale"]
text = ["dep:hephae-text", "hephae-gui?/text"]

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

[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(docsrs_dep)"]
level = "allow"
priority = 0

[package]
authors = ["GlFolker"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["graphics", "rendering"]
description = "A personalized, opinionated Bevy plugin that adds support for drawing and batching arbitrary vertices and indices."
edition = "2021"
exclude = ["assets", "examples"]
keywords = ["bevy", "graphics", "render", "vertex", "batch"]
license = "MIT OR Apache-2.0"
name = "hephae"
readme = "README.md"
repository = "https://github.com/GlennFolker/hephae"
rust-version = "1.84"
version = "0.6.0"

[package.metadata.docs.rs]
all-features = true
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustc-args = ["--cfg", "docsrs_dep"]
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition", "--html-after-content", "docs-rs/trait-tags.html"]