jengine 0.3.0

Personal roguelike game engine.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "jengine"
version = "0.3.0"
authors = ["Tadeas Tran <tran.tadeas@protonmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Personal roguelike game engine."
readme = "README.md"
keywords = ["gamedev"]
categories = ["game-engines"]
license = "GPL-3.0"
repository = "https://github.com/honyoP/jengine"

[lib]
name = "jengine"
path = "src/lib.rs"

[[bin]]
name = "jengine"
path = "src/main.rs"

[[test]]
name = "animations"
path = "tests/animations.rs"

[[test]]
name = "ecs"
path = "tests/ecs.rs"

[[test]]
name = "text"
path = "tests/text.rs"

[[test]]
name = "ui"
path = "tests/ui.rs"

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false

[dependencies.pollster]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.walkdir]
version = "2"

[dependencies.wgpu]
version = "22"

[dependencies.winit]
version = "0.30"

[build-dependencies.image]
version = "0.25"
features = ["png"]
default-features = false