Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/tools/example-showcase/Cargo.toml
6595 views
1
[package]
2
name = "example-showcase"
3
edition = "2024"
4
description = "Tool for running examples or generating a showcase page for the website."
5
publish = false
6
license = "MIT OR Apache-2.0"
7
8
[dependencies]
9
xshell = "0.2"
10
clap = { version = "4.0", features = ["derive"] }
11
toml_edit = { version = "0.23.2", default-features = false, features = [
12
"parse",
13
] }
14
pbr = "1.1"
15
regex = "1.10.5"
16
17
[lints]
18
workspace = true
19
20