2020-05-24 18:01:48 +00:00
|
|
|
[package]
|
2020-11-28 00:39:59 +00:00
|
|
|
name = "bevy_reflect_derive"
|
2024-07-08 12:54:08 +00:00
|
|
|
version = "0.15.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-11-28 00:39:59 +00:00
|
|
|
description = "Derive implementations for bevy_reflect"
|
2020-08-10 00:24:27 +00: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-10 00:24:27 +00:00
|
|
|
keywords = ["bevy"]
|
2020-05-24 18:01:48 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2022-10-18 13:49:57 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
# When enabled, allows documentation comments to be processed by the reflection macros
|
|
|
|
documentation = []
|
2024-07-14 15:55:31 +00:00
|
|
|
# Enables macro logic related to function reflection
|
|
|
|
functions = []
|
2022-10-18 13:49:57 +00:00
|
|
|
|
2020-05-24 18:01:48 +00:00
|
|
|
[dependencies]
|
2024-07-08 12:54:08 +00:00
|
|
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-dev" }
|
2020-05-24 18:01:48 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2024-09-22 14:24:14 +00:00
|
|
|
syn = { version = "2.0", features = ["full"] }
|
2022-05-30 17:26:23 +00:00
|
|
|
uuid = { version = "1.1", features = ["v4"] }
|
2023-11-18 20:58:48 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
2024-03-23 02:22:52 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-07-29 23:10:16 +00:00
|
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
2024-03-23 02:22:52 +00:00
|
|
|
all-features = true
|