jong/Cargo.toml
2026-01-11 15:43:03 -08:00

32 lines
897 B
TOML

[package]
name = "jong"
version = "0.1.0"
edition = "2024"
# license = "Source-First-1.1" # pending crates.io support
license-file = "LICENSE.typ"
description = "riichi mahjong"
readme = false
[lib]
[dependencies]
bevy = { version = "0.17.3", features = ["dynamic_linking"] }
# bevy_ratatui = { git = "https://github.com/kenianbei/bevy_ratatui.git", rev = "e4b022308e08ab360ef89eca8e9f8b1c969e9a56" }
bevy_ratatui = { path = "/home/tao/clones/bevy_ratatui" }
clap = { version = "4.5.54", features = ["derive"] }
log = { version = "0.4.29", features = [
"release_max_level_error",
"max_level_trace",
] }
rand = "0.9.2"
ratatui = "0.30.0"
strum = { version = "0.27.2", features = ["derive"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
tui-logger = { version = "0.18.0", features = ["tracing-support", "crossterm"] }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3