
# Objective - `toml_edit` released a new patch that deprecates `Document` - this warns when Bevy builds, and CI deny warns ## Solution - fix deprecation warnings
20 lines
370 B
TOML
20 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"
|