bevy_xray_parser 0.1.0

Parse Bevy source code to extract state hierarchies, plugin dependencies, and schedule configurations
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.85"
name = "bevy_xray_parser"
version = "0.1.0"
authors = ["Mario Morgenthum"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse Bevy source code to extract state hierarchies, plugin dependencies, and schedule configurations"
homepage = "https://github.com/morgenthum/bevy_xray"
documentation = "https://docs.rs/bevy_xray_parser"
readme = "README.md"
keywords = [
    "bevy",
    "ecs",
    "gamedev",
    "static-analysis",
    "parser",
]
categories = [
    "development-tools",
    "game-engines",
    "parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/morgenthum/bevy_xray"

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

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

[[test]]
name = "parse_workspace"
path = "tests/parse_workspace.rs"

[dependencies.glob]
version = "0.3"

[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]

[dependencies.quote]
version = "1"

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

[dependencies.syn]
version = "2"
features = [
    "full",
    "visit",
    "extra-traits",
]

[dev-dependencies.tempfile]
version = "3"

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"