2021-05-19 19:03:36 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_macro_utils"
|
2024-07-08 08:54:08 -04: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 18:53:38 +01:00
|
|
|
toml_edit = { version = "0.22.7", default-features = false, features = [
|
|
|
|
"parse",
|
|
|
|
] }
|
2023-05-16 03:24:17 +02:00
|
|
|
syn = "2.0"
|
2021-08-24 00:31:21 +00:00
|
|
|
quote = "1.0"
|
2023-10-02 11:22:57 +11:00
|
|
|
proc-macro2 = "1.0"
|
2023-11-18 14:58:48 -06:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
2024-03-22 20:22:52 -06:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-07-30 01:10:16 +02:00
|
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
2024-03-22 20:22:52 -06:00
|
|
|
all-features = true
|