# Objective Fixes #5675. Replace `toml` with `toml_edit` ## Solution Replace `toml` with `toml_edit`. This conveniently also removes the `serde` dependency from `bevy_macro_utils`, which may speed up cold compilation by removing the serde bottleneck from most of the macro crates in the engine.
14 lines
279 B
TOML
14 lines
279 B
TOML
[package]
|
|
name = "build-example-pages"
|
|
version = "0.9.0"
|
|
edition = "2021"
|
|
description = "handle examples in Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
toml_edit = "0.17"
|
|
tera = "1.15"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
bitflags = "1.3"
|