mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
04a37f722a
Fixes #1809. It makes it also possible to use `derive` for `SystemParam` inside ECS and avoid manual implementation. An alternative solution to macro changes is to use `use crate as bevy_ecs;` in `event.rs`.
19 lines
331 B
TOML
19 lines
331 B
TOML
[package]
|
|
name = "bevy_ecs_macros"
|
|
version = "0.5.0"
|
|
description = "Bevy ECS Macros"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "1.0"
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
find-crate = "0.6"
|