[package]
edition = "2024"
name = "bevy_entity_graph"
version = "0.18.0"
authors = ["Josiah Putman <joshikatsu@gmail.com>"]
build = false
exclude = ["assets/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Create graphs of entities in the Bevy game engine."
homepage = "https://github.com/Katsutoshii/bevy_entity_graph"
documentation = "https://docs.rs/bevy_entity_graph/latest/bevy_entity_graph"
readme = "README.md"
keywords = ["bevy"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Katsutoshii/bevy_entity_graph"
[lib]
name = "bevy_entity_graph"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[dependencies.bevy]
version = "0.18"
features = [
"std",
"bevy_log",
]
default-features = false
[dependencies.smallvec]
version = "1"
default-features = false
[dev-dependencies.bevy]
version = "0.18"
features = ["file_watcher"]
[profile.dev]
opt-level = 1
strip = "debuginfo"
[profile.dev.package."*"]
opt-level = 3
debug = 0