21 lines
414 B
TOML
21 lines
414 B
TOML
[package]
|
|
name = "shdoku"
|
|
description = "a basic tui-sudoku game"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["markichnich"]
|
|
license = "GPL-3.0-or-later"
|
|
keywords = ["sudoku", "tui", "game", "crossterm"]
|
|
categories = ["games", "mathematics", "science", "algorithms"]
|
|
|
|
[dependencies]
|
|
clap = "4.5.20"
|
|
crossterm = "0.27.0"
|
|
rand = "0.8.5"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
panic = "abort"
|
|
strip = true
|