This commit is contained in:
Tao Tien 2026-01-08 23:58:26 -08:00
parent e79f6ba0e3
commit 76b720b0a2
3 changed files with 9 additions and 0 deletions

2
Cargo.lock generated
View file

@ -3091,8 +3091,10 @@ dependencies = [
"bevy",
"bevy_ratatui",
"clap",
"log",
"ratatui",
"strum 0.27.2",
"tracing-subscriber",
]
[[package]]

View file

@ -13,8 +13,10 @@ readme = false
bevy = { version = "0.17.3", features = ["dynamic_linking"] }
bevy_ratatui = "0.10.0"
clap = { version = "4.5.54", features = ["derive"] }
log = { version = "0.4.29", features = ["release_max_level_error", "max_level_trace"] }
ratatui = "0.29.0"
strum = { version = "0.27.2", features = ["derive"] }
tracing-subscriber = "0.3.22"
[profile.dev]
opt-level = 1

View file

@ -17,6 +17,11 @@ enum Mode {
}
fn main() {
tracing_subscriber::fmt()
.with_writer(std::io::stderr)
.with_env_filter("warn,jong=trace")
.init();
let args = Args::parse();
let mut app = App::new();