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