mirror of
https://github.com/bevyengine/bevy
synced 2024-11-30 00:20:20 +00:00
b3655a3601
# Objective - `toml_edit` released a new patch that deprecates `Document` - this warns when Bevy builds, and CI deny warns ## Solution - fix deprecation warnings
19 lines
370 B
TOML
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"
|