2020-01-19 10:02:12 +00:00
|
|
|
[package]
|
2020-07-10 09:53:31 +00:00
|
|
|
name = "bevy_derive"
|
2020-11-03 21:34:00 +00:00
|
|
|
version = "0.3.0"
|
2020-08-10 00:24:27 +00:00
|
|
|
edition = "2018"
|
2020-09-10 19:54:24 +00:00
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
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"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["bevy"]
|
2020-01-19 10:02:12 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-10 19:54:24 +00:00
|
|
|
Inflector = { version = "0.11.4", default-features = false }
|
2020-11-17 00:39:26 +00:00
|
|
|
find-crate = "0.6"
|
2020-04-01 01:04:54 +00:00
|
|
|
proc-macro2 = "1.0"
|
2020-01-19 10:02:12 +00:00
|
|
|
quote = "1.0"
|
2020-07-10 09:53:31 +00:00
|
|
|
syn = "1.0"
|