Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_render/macros/Cargo.toml
6595 views
1
[package]
2
name = "bevy_render_macros"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "Derive implementations for bevy_render"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy"]
10
11
[lib]
12
proc-macro = true
13
14
[dependencies]
15
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.17.0-dev" }
16
17
syn = { version = "2.0", features = ["full"] }
18
proc-macro2 = "1.0"
19
quote = "1.0"
20
21
[lints]
22
workspace = true
23
24
[package.metadata.docs.rs]
25
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
26
all-features = true
27
28