2020-01-19 10:02:12 +00:00
|
|
|
[package]
|
2020-07-10 09:53:31 +00:00
|
|
|
name = "bevy_derive"
|
2023-03-06 03:53:02 +00:00
|
|
|
version = "0.10.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-08-10 00:24:27 +00:00
|
|
|
description = "Provides derive implementations for Bevy Engine"
|
|
|
|
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-10 00:24:27 +00:00
|
|
|
keywords = ["bevy"]
|
2020-01-19 10:02:12 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-06 03:53:02 +00:00
|
|
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.10.0" }
|
2021-05-19 19:03:36 +00:00
|
|
|
|
2020-01-19 10:02:12 +00:00
|
|
|
quote = "1.0"
|
2022-04-25 13:16:27 +00:00
|
|
|
syn = { version = "1.0", features = ["full"] }
|