2020-05-24 11:01:48 -07:00
|
|
|
[package]
|
2020-11-27 16:39:59 -08:00
|
|
|
name = "bevy_reflect_derive"
|
2022-04-15 18:05:37 +00:00
|
|
|
version = "0.7.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-11-27 16:39:59 -08:00
|
|
|
description = "Derive implementations for bevy_reflect"
|
2020-08-09 17:24:27 -07:00
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-09 17:24:27 -07:00
|
|
|
keywords = ["bevy"]
|
2020-05-24 11:01:48 -07:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-15 18:05:37 +00:00
|
|
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0" }
|
2021-05-19 19:03:36 +00:00
|
|
|
|
2020-05-24 11:01:48 -07:00
|
|
|
syn = "1.0"
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2020-11-27 16:39:59 -08:00
|
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|