bevy/tools/example-showcase/Cargo.toml
François Mockers b3655a3601
fix deprecations from toml_edit (#12421)
# Objective

- `toml_edit` released a new patch that deprecates `Document`
- this warns when Bevy builds, and CI deny warns

## Solution

- fix deprecation warnings
2024-03-11 17:53:38 +00:00

19 lines
370 B
TOML

[package]
name = "example-showcase"
version = "0.14.0-dev"
edition = "2021"
description = "Run examples"
publish = false
license = "MIT OR Apache-2.0"
[lints]
workspace = true
[dependencies]
xshell = "0.2"
clap = { version = "4.0", features = ["derive"] }
ron = "0.8"
toml_edit = { version = "0.22.7", default-features = false, features = [
"parse",
] }
pbr = "1.1"