valence/tools/playground/Cargo.toml
Gingeh e5de2d3f20
Add cli arg for log level to playground (#343)
## Description
Fixes #305 

`cargo run -- -l trace`

Uses `Level`'s `FromStr` impl, which accepts numbers 1-5 or
case-insensitive level names. Default level is `Level::DEBUG`
2023-05-28 08:57:07 -04:00

14 lines
282 B
TOML

[package]
name = "playground"
version.workspace = true
edition.workspace = true
[dependencies]
anyhow = "1.0.65"
clap = { version = "4", features = ["derive"] }
glam = "0.23.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
valence_core.workspace = true
valence.workspace = true