Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_ecs/macro_logic/Cargo.toml
30635 views
1
[package]
2
name = "bevy_ecs_macro_logic"
3
version = "0.19.0-dev"
4
description = "Shared Bevy ECS Macro internals"
5
edition = "2024"
6
license = "MIT OR Apache-2.0"
7
8
[dependencies]
9
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.19.0-dev" }
10
11
syn = { version = "2.0.108", features = ["full", "extra-traits"] }
12
quote = "1.0"
13
proc-macro2 = "1.0"
14
15
[lints]
16
workspace = true
17
18
[package.metadata.docs.rs]
19
rustdoc-args = [
20
"-Zunstable-options",
21
"--generate-link-to-definition",
22
"--generate-macro-expansion",
23
]
24
all-features = true
25
26