2021-05-19 19:03:36 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_macro_utils"
|
2024-07-08 12:54:08 +00:00
|
|
|
version = "0.15.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2021-05-19 19:03:36 +00:00
|
|
|
description = "A collection of utils for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-05-19 19:03:36 +00:00
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-11 17:53:38 +00:00
|
|
|
toml_edit = { version = "0.22.7", default-features = false, features = [
|
|
|
|
"parse",
|
|
|
|
] }
|
2023-05-16 01:24:17 +00:00
|
|
|
syn = "2.0"
|
2021-08-24 00:31:21 +00:00
|
|
|
quote = "1.0"
|
2023-10-02 00:22:57 +00:00
|
|
|
proc-macro2 = "1.0"
|
2023-11-18 20:58:48 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
2024-03-23 02:22:52 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-07-29 23:10:16 +00:00
|
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
2024-03-23 02:22:52 +00:00
|
|
|
all-features = true
|