jong/Cargo.toml

31 lines
863 B
TOML
Raw Normal View History

2026-01-05 23:24:42 -08:00
[package]
2026-01-08 21:35:16 -08:00
name = "jong"
2026-01-05 23:24:42 -08:00
version = "0.1.0"
edition = "2024"
2026-01-08 22:07:11 -08:00
# license = "Source-First-1.1" # pending crates.io support
license-file = "LICENSE.typ"
2026-01-08 23:21:58 -08:00
description = "riichi mahjong"
readme = false
2026-01-05 23:24:42 -08:00
2026-01-08 21:35:16 -08:00
[lib]
2026-01-05 23:24:42 -08:00
[dependencies]
bevy = { version = "0.17.3", features = ["dynamic_linking"] }
2026-01-09 03:34:54 -08:00
# bevy_ratatui = { git = "https://github.com/kenianbei/bevy_ratatui.git", rev = "e4b022308e08ab360ef89eca8e9f8b1c969e9a56" }
bevy_ratatui = { path = "/home/tao/clones/bevy_ratatui" }
2026-01-07 00:51:57 -08:00
clap = { version = "4.5.54", features = ["derive"] }
2026-01-09 03:34:54 -08:00
log = { version = "0.4.29", features = [
"release_max_level_error",
"max_level_trace",
] }
ratatui = "0.30.0"
strum = { version = "0.27.2", features = ["derive"] }
2026-01-08 23:58:26 -08:00
tracing-subscriber = "0.3.22"
2026-01-09 03:34:54 -08:00
tui-logger = { version = "0.18.0", features = ["tracing-support", "crossterm"] }
2026-01-05 23:24:42 -08:00
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3