[package]
edition = "2024"
name = "text_lib"
version = "0.1.0"
authors = ["Mr Richardson"]
build = false
exclude = [
".github/workflows/rust.yml",
".gitignore",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple macroquad text rendering with line wrapping."
documentation = "https://docs.rs/text_lib"
readme = "README.md"
keywords = [
"text",
"macroquad",
"line-wrapping",
]
categories = [
"game-development",
"gui",
"text-processing",
"rendering",
"graphics",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/Mr-Richardson/macroquad_text_lib"
[lib]
name = "text_lib"
path = "src/lib.rs"
[dependencies.macroquad]
version = "0.4.15"