Skip to content

Commit aba94e4

Browse files
authored
chore: add cargo metadata to bevy_system_reflection (#363)
# Summary Adds missing cargo data for the cargo publish
1 parent 70958b3 commit aba94e4

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

crates/bevy_system_reflection/Cargo.toml

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
22
name = "bevy_system_reflection"
33
version = "0.1.0"
44
edition = "2024"
5+
authors = ["Maksymilian Mozolewski <[email protected]>"]
6+
license = "MIT OR Apache-2.0"
7+
description = "Utilities for reflecting systems, schedules, system sets and rendering schedules"
8+
repository = "https://github.com/makspll/bevy_mod_scripting"
9+
homepage = "https://github.com/makspll/bevy_mod_scripting"
10+
keywords = ["bevy", "gamedev", "scripting", "lua"]
11+
categories = ["game-development"]
12+
readme = "readme.md"
513

614
[dependencies]
715
bevy = { workspace = true, default-features = false }
816
dot-writer = "0.1.4"
9-
petgraph = "*"
17+
petgraph = "0.6"
1018

1119

1220
[dev-dependencies]
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Bevy System Reflection
2+
3+
This crate is a part of the ["bevy_mod_scripting" workspace](https://github.com/makspll/bevy_mod_scripting).
4+
5+
6+
It holds some reflection logic which is not essentially core BMS logic and could theoretically be upstreamaed to Bevy.

0 commit comments

Comments
 (0)