Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_macro_utils/Cargo.toml
9402 views
1
[package]
2
name = "bevy_macro_utils"
3
version = "0.19.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.24.0", default-features = false, features = [
16
"parse",
17
] }
18
19
[lints]
20
workspace = true
21
22
[package.metadata.docs.rs]
23
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
24
all-features = true
25
26