jong/Cargo.toml

24 lines
498 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-07 00:51:57 -08:00
bevy_ratatui = "0.10.0"
clap = { version = "4.5.54", features = ["derive"] }
ratatui = "0.29.0"
strum = { version = "0.27.2", features = ["derive"] }
2026-01-05 23:24:42 -08:00
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3