mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
80a0448473
This easily improve compilation time by 2x
24 lines
581 B
TOML
24 lines
581 B
TOML
[package]
|
|
name = "bevy_derive"
|
|
version = "0.3.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides derive implementations for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
Inflector = { version = "0.11.4", default-features = false }
|
|
find-crate = "0.5"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = "1.0"
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|