bevy_fast_light 0.2.2

Simple 2D lighting for Bevy focused on performance over features.
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_fast_light"
version = "0.2.2"
authors = ["Leopold Meinel"]
build = false
exclude = [
    "assets/*",
    "static/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple 2D lighting for Bevy focused on performance over features."
readme = "README.md"
categories = [
    "game-engines",
    "graphics",
    "rendering",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/leomeinel/bevy_fast_light"

[package.metadata.bevy_cli.release]
default-features = false

[package.metadata.bevy_cli.web]
default-features = false

[package.metadata.bevy_cli.web.dev]
features = ["dev"]

[package.metadata.bevy_lint]

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

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

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

[dependencies.bevy]
version = "0.18"
features = [
    "bevy_core_pipeline",
    "bevy_sprite_render",
    "bevy_log",
]
default-features = false

[dev-dependencies.bevy]
version = "0.18"
features = ["2d"]
default-features = false

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

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

[profile.ci]
opt-level = 0
codegen-units = 4
debug = "line-tables-only"
inherits = "dev"

[profile.ci.package."*"]
opt-level = 0

[profile.dev]
opt-level = 1
incremental = false

[profile.dev.package.wgpu-types]
debug-assertions = false

[profile.dev.package."*"]
opt-level = 3

[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"

[profile.web-dev]
inherits = "dev"

[profile.web-dev.package."*"]
opt-level = "s"

[profile.web-release]
opt-level = "s"
inherits = "release"