mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 22:20:20 +00:00
9f8db0de0d
# Objective - The [`build-templated-pages`](4778fbeb65/tools/build-templated-pages
) tool is used to render the Markdown templates in the [docs-template](4778fbeb65/docs-template
) folder. - It depends on out outdated version of `toml_edit`. ## Solution - Bump `toml_edit` to 0.21, disabling all features except `parse`.
19 lines
450 B
TOML
19 lines
450 B
TOML
[package]
|
|
name = "bevy_macro_utils"
|
|
version = "0.12.0"
|
|
edition = "2021"
|
|
description = "A collection of utils for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
|
|
syn = "2.0"
|
|
quote = "1.0"
|
|
rustc-hash = "1.0"
|
|
proc-macro2 = "1.0"
|
|
|
|
[lints]
|
|
workspace = true
|