hanabi_effect_graph 0.1.0

Serializable authoring graph and runtime bake pipeline for bevy_hanabi effects
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"
rust-version = "1.95"
name = "hanabi_effect_graph"
version = "0.1.0"
build = false
include = [
    "/src/**/*.rs",
    "/examples/**/*.rs",
    "/Cargo.toml",
    "/README.md",
    "/CHANGELOG.md",
    "/LICENSE-APACHE2",
    "/LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serializable authoring graph and runtime bake pipeline for bevy_hanabi effects"
homepage = "https://github.com/djeedai/hanabi-workshop"
documentation = "https://docs.rs/hanabi_effect_graph"
readme = "README.md"
keywords = [
    "bevy",
    "hanabi",
    "particles",
    "vfx",
    "graph",
]
categories = [
    "game-development",
    "graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/djeedai/hanabi-workshop"

[package.metadata.docs.rs]
all-features = true

[features]
2d = ["bevy_hanabi/2d"]
3d = ["bevy_hanabi/3d"]
default = [
    "2d",
    "3d",
]

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

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

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

[dependencies.bevy]
version = "0.19"
default-features = false

[dependencies.bevy_hanabi]
version = "0.19"
default-features = false

[dependencies.glam]
version = "0.32"
features = ["serde"]

[dependencies.ron]
version = "0.12"

[dependencies.serde]
version = "1"
features = [
    "derive",
    "rc",
]

[dependencies.thiserror]
version = "2"

[lints.clippy]
dbg_macro = "deny"
fallible_impl_from = "deny"
inefficient_to_string = "warn"
large_futures = "warn"
large_types_passed_by_value = "warn"
lossy_float_literal = "warn"
map_err_ignore = "warn"
mutex_atomic = "warn"
rc_buffer = "warn"
redundant_clone = "warn"
rest_pat_in_fully_bound_structs = "warn"
string_add = "warn"
string_to_string = "warn"
todo = "deny"
unimplemented = "deny"
unused_async = "warn"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "warn"