18 lines
390 B
TOML
18 lines
390 B
TOML
[package]
|
|
name = "word_grid"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Joel Therrien"]
|
|
repository = "https://git.joeltherrien.ca/joel/WordGrid"
|
|
license = "AGPL-3"
|
|
description = "A (WIP) package for playing 'WordGrid'."
|
|
|
|
# We manually specify for better caching in Podman
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
csv = "1.3.0"
|
|
serde = { workspace = true }
|
|
rand = { workspace = true }
|
|
|