
# Objective - Fixes #9363 ## Solution Moved `fq_std` from `bevy_reflect_derive` to `bevy_macro_utils`. This does make the `FQ*` types public where they were previously private, which is a change to the public-facing API, but I don't believe a breaking one. Additionally, I've done a basic QA pass over the `bevy_macro_utils` crate, adding `deny(unsafe)`, `warn(missing_docs)`, and documentation where required.
17 lines
366 B
TOML
17 lines
366 B
TOML
[package]
|
|
name = "bevy_macro_utils"
|
|
version = "0.12.0-dev"
|
|
edition = "2021"
|
|
description = "A collection of utils for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
toml_edit = "0.19"
|
|
syn = "2.0"
|
|
quote = "1.0"
|
|
rustc-hash = "1.0"
|
|
proc-macro2 = "1.0"
|