bevy/tools/build-example-pages/Cargo.toml
James Liu 5f18033dd3 Use toml_edit instead of toml (#7327)
# 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.
2023-01-22 19:41:48 +00:00

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"