2022-05-30 18:36:03 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_render_macros"
|
2024-02-21 20:58:59 +00:00
|
|
|
version = "0.14.0-dev"
|
2022-05-30 18:36:03 +00:00
|
|
|
edition = "2021"
|
|
|
|
description = "Derive implementations for bevy_render"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-21 20:58:59 +00:00
|
|
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-dev" }
|
2022-05-30 18:36:03 +00:00
|
|
|
|
2023-05-16 01:24:17 +00:00
|
|
|
syn = "2.0"
|
2022-05-30 18:36:03 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2023-11-18 20:58:48 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
2024-03-23 02:22:52 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
|
|
|
|
all-features = true
|