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