bevy/crates/bevy_crevice/bevy-crevice-derive/Cargo.toml

28 lines
753 B
TOML
Raw Normal View History

2021-06-02 02:59:17 +00:00
[package]
name = "bevy-crevice-derive"
description = "Derive crate for the 'crevice' crate (Bevy version)"
2022-01-08 10:18:22 +00:00
version = "0.6.0"
2021-06-02 02:59:17 +00:00
edition = "2018"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
documentation = "https://docs.rs/crevice-derive"
homepage = "https://github.com/LPGhatguy/crevice"
repository = "https://github.com/bevyengine/bevy"
2021-06-02 02:59:17 +00:00
license = "MIT OR Apache-2.0"
[features]
default = []
# Enable methods that let you introspect into the generated structs.
debug-methods = []
2021-06-02 02:59:17 +00:00
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = "1.0.40"
quote = "1.0.7"
proc-macro2 = "1.0.21"
2022-01-08 10:18:22 +00:00
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.6.0" }