gemini-engine 1.2.1

A 2D/3D monospaced ASCII rendering engine for the terminal
Documentation
[package]
name = "gemini-engine"
authors = ["RedPenguin"]
edition = "2024"
# when publishing, commit as "published <new version> to crates.io"
version = "1.2.1"
description = "A 2D/3D monospaced ASCII rendering engine for the terminal"
documentation = "https://docs.rs/gemini-engine"
readme = "README.md"
homepage = "https://github.com/renpenguin/gemini-engine"
repository = "https://github.com/renpenguin/gemini-engine"
license = "MIT"
keywords = ["gemini", "command-line", "ascii", "game-engine", "rendering-engine"]
categories = ["rendering", "rendering::engine", "graphics", "game-development", "command-line-interface"]

[features]
default = ["3D", "gameloop"]
3D = []
gameloop = ["dep:gemini-mainloop"]

[dependencies]
terminal_size = "0.4.1"
glam = "0.28.0"
gemini-mainloop = { version = "0.2.0", optional = true }

[target.'cfg(windows)'.dependencies]
enable-ansi-support = "0.3.1"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"

[lints.clippy]
enum_glob_use = "warn"
pedantic = "warn"
nursery = "warn"
unwrap_used = "warn"

# Allow `as` casting
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"
module_name_repetitions = "allow"