bevy/tools/example-showcase/Cargo.toml
andriyDev f47b1c00ee
Bump ron version to 0.10. (#19631)
# Objective

- Update ron to the latest version.
- This is blocking changes to AnimationGraph (as some valid structs are
not capable of being deserialized).

## Solution

- Bump ron!

## Testing

- The particular issue I was blocked by seems to be resolved!
2025-06-13 19:54:31 +00:00

20 lines
425 B
TOML

[package]
name = "example-showcase"
edition = "2024"
description = "Tool for running examples or generating a showcase page for the website."
publish = false
license = "MIT OR Apache-2.0"
[dependencies]
xshell = "0.2"
clap = { version = "4.0", features = ["derive"] }
ron = "0.10"
toml_edit = { version = "0.22.7", default-features = false, features = [
"parse",
] }
pbr = "1.1"
regex = "1.10.5"
[lints]
workspace = true