Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion crates/bevy_system_reflection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@
name = "bevy_system_reflection"
version = "0.1.0"
edition = "2024"
authors = ["Maksymilian Mozolewski <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Utilities for reflecting systems, schedules, system sets and rendering schedules"
repository = "https://github.com/makspll/bevy_mod_scripting"
homepage = "https://github.com/makspll/bevy_mod_scripting"
keywords = ["bevy", "gamedev", "scripting", "lua"]
categories = ["game-development"]
readme = "readme.md"

[dependencies]
bevy = { workspace = true, default-features = false }
dot-writer = "0.1.4"
petgraph = "*"
petgraph = "0.6"


[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions crates/bevy_system_reflection/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Bevy System Reflection

This crate is a part of the ["bevy_mod_scripting" workspace](https://github.com/makspll/bevy_mod_scripting).


It holds some reflection logic which is not essentially core BMS logic and could theoretically be upstreamaed to Bevy.
Loading