2023-05-08 21:02:06 +02:00
|
|
|
[package]
|
|
|
|
name = "example-showcase"
|
|
|
|
edition = "2021"
|
2024-04-26 07:55:03 -04:00
|
|
|
description = "Tool for running examples or generating a showcase page for the website."
|
2023-05-08 21:02:06 +02:00
|
|
|
publish = false
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
xshell = "0.2"
|
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
ron = "0.8"
|
2024-03-11 18:53:38 +01:00
|
|
|
toml_edit = { version = "0.22.7", default-features = false, features = [
|
|
|
|
"parse",
|
|
|
|
] }
|
2023-05-19 19:57:54 +02:00
|
|
|
pbr = "1.1"
|
2024-06-18 23:23:02 -04:00
|
|
|
regex = "1.10.5"
|
2024-03-22 20:22:52 -06:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|